{
    "accurip": {
        "description": "Computes an AccurateRip CRC",
        "elements": {
            "accurip": {
                "author": "Christophe Fergeau <teuf@gnome.org>",
                "description": "Computes an AccurateRip CRC",
                "hierarchy": [
                    "GstAccurip",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Audio",
                "long-name": "AccurateRip(TM) CRC element",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: 44100\n       channels: 2\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: 44100\n       channels: 2\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "first-track": {
                        "blurb": "Indicate to the CRC calculation algorithm that this is the first track of a set",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "last-track": {
                        "blurb": "Indicate to the CRC calculation algorithm that this is the last track of a set",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstaccurip",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "adpcmdec": {
        "description": "ADPCM decoder",
        "elements": {
            "adpcmdec": {
                "author": "Pioneers of the Inevitable <songbird@songbirdnest.com>",
                "description": "Decode MS and IMA ADPCM audio",
                "hierarchy": [
                    "ADPCMDec",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "ADPCM decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-adpcm:\n         layout: { (string)microsoft, (string)dvi }\n    block_align: [ 64, 8192 ]\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            }
        },
        "filename": "gstadpcmdec",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "adpcmenc": {
        "description": "ADPCM encoder",
        "elements": {
            "adpcmenc": {
                "author": "Pioneers of the Inevitable <songbird@songbirdnest.com>",
                "description": "Encode ADPCM audio",
                "hierarchy": [
                    "ADPCMEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "ADPCM encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-adpcm:\n         layout: dvi\n    block_align: [ 64, 8192 ]\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blockalign": {
                        "blurb": "Block size for output stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "8192",
                        "min": "64",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "layout": {
                        "blurb": "Layout for output stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "dvi (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstADPCMEncLayout",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstadpcmenc",
        "license": "LGPL",
        "other-types": {
            "GstADPCMEncLayout": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "DVI/IMA APDCM",
                        "name": "dvi",
                        "value": "0"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "aiff": {
        "description": "Create and parse Audio Interchange File Format (AIFF) files",
        "elements": {
            "aiffmux": {
                "author": "Robert Swain <robert.swain@gmail.com>",
                "description": "Multiplex raw audio into AIFF",
                "hierarchy": [
                    "GstAiffMux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Muxer/Audio",
                "long-name": "AIFF audio muxer",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { S8, S16BE, S24BE, S32BE }\n       channels: [ 1, 2147483647 ]\n           rate: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-aiff:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "aiffparse": {
                "author": "Pioneers of the Inevitable <songbird@songbirdnest.com>",
                "description": "Parse a .aiff file into raw audio",
                "hierarchy": [
                    "GstAiffParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer/Audio",
                "long-name": "AIFF audio demuxer",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-aiff:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S8, S16BE, S16LE, S24BE, S24LE, S32LE, S32BE, F32BE, F64BE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstaiff",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "aom": {
        "description": "AOM plugin library",
        "elements": {
            "av1dec": {
                "author": "Sean DuBois <sean@siobud.com>",
                "description": "Decode AV1 video streams",
                "hierarchy": [
                    "GstAV1Dec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video",
                "long-name": "AV1 Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-av1:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y42B, Y444, I420_10LE, I420_12LE, I422_10LE, I422_12LE, Y444_10LE, Y444_12LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "av1enc": {
                "author": "Sean DuBois <sean@siobud.com>",
                "description": "Encode AV1 video streams",
                "hierarchy": [
                    "GstAV1Enc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video",
                "long-name": "AV1 Encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, Y42B, Y444, YV12 }\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 4, 2147483647 ]\n         height: [ 4, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-av1:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "buf-initial-sz": {
                        "blurb": "Decoder buffer initial size, expressed in units of time (milliseconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "buf-optimal-sz": {
                        "blurb": "Decoder buffer optimal size, expressed in units of time (milliseconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "buf-sz": {
                        "blurb": "Decoder buffer size, expressed in units of time (milliseconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "6000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "cpu-used": {
                        "blurb": "CPU Used. A Value greater than 0 will increase encoder speed at the expense of quality.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "5",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "drop-frame": {
                        "blurb": "Temporal resampling configuration, drop frames as a strategy to meet its target data rate Set to zero (0) to disable this feature.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "end-usage": {
                        "blurb": "Rate control algorithm to use, indicates the end usage of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "vbr (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAV1EncEndUsageMode",
                        "writable": true
                    },
                    "max-quantizer": {
                        "blurb": "Maximum (worst quality) quantizer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "min-quantizer": {
                        "blurb": "Minimum (best quality) quantizer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "overshoot-pct": {
                        "blurb": "Rate control adaptation overshoot control",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "25",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "resize-denominator": {
                        "blurb": "Frame resize denominator, assuming 8 as the numerator",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8",
                        "max": "16",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "resize-kf-denominator": {
                        "blurb": "Frame resize keyframe denominator, assuming 8 as the numerator",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8",
                        "max": "16",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "resize-mode": {
                        "blurb": "Frame resize mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAV1EncResizeMode",
                        "writable": true
                    },
                    "row-mt": {
                        "blurb": "Enable row based multi-threading",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "superres-denominator": {
                        "blurb": "Frame super-resolution denominator, used only by SUPERRES_FIXED mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8",
                        "max": "16",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "superres-kf-denominator": {
                        "blurb": "Keyframe super-resolution denominator",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8",
                        "max": "16",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "superres-kf-qthresh": {
                        "blurb": "Keyframe super-resolution qindex threshold, used only by SUPERRES_QTHRESH mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "63",
                        "max": "63",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "superres-mode": {
                        "blurb": "It integrates upscaling after the encode/decode process",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAV1EncSuperresMode",
                        "writable": true
                    },
                    "superres-qthresh": {
                        "blurb": "Frame super-resolution qindex threshold, used only by SUPERRES_QTHRESH mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "63",
                        "max": "63",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "target-bitrate": {
                        "blurb": "Target bitrate, in kilobits per second",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "256",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "threads": {
                        "blurb": "Max number of threads to use encoding, set to 0 determine the approximate number of threads that the system schedule",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "tile-columns": {
                        "blurb": "Partition into separate vertical tile columns from image frame which can enable parallel encoding",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "6",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "tile-rows": {
                        "blurb": "Partition into separate horizontal tile rows from image frame which can enable parallel encoding",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "6",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "undershoot-pct": {
                        "blurb": "Rate control adaptation undershoot control",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "25",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstaom",
        "license": "LGPL",
        "other-types": {
            "GstAV1EncEndUsageMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Variable Bit Rate Mode",
                        "name": "vbr",
                        "value": "0"
                    },
                    {
                        "desc": "Constant Bit Rate Mode",
                        "name": "cbr",
                        "value": "1"
                    },
                    {
                        "desc": "Constrained Quality Mode",
                        "name": "cq",
                        "value": "2"
                    },
                    {
                        "desc": "Constant Quality Mode",
                        "name": "q",
                        "value": "3"
                    }
                ]
            },
            "GstAV1EncResizeMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "No frame resizing allowed",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "All frames are coded at the specified scale",
                        "name": "fixed",
                        "value": "1"
                    },
                    {
                        "desc": "All frames are coded at a random scale",
                        "name": "random",
                        "value": "2"
                    }
                ]
            },
            "GstAV1EncSuperresMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "No frame superres allowed",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "All frames are coded at the specified scale and super-resolved",
                        "name": "fixed",
                        "value": "1"
                    },
                    {
                        "desc": "All frames are coded at a random scale and super-resolved",
                        "name": "random",
                        "value": "2"
                    },
                    {
                        "desc": "Superres scale for a frame is determined based on q_index",
                        "name": "qthresh",
                        "value": "3"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "asfmux": {
        "description": "ASF Muxer Plugin",
        "elements": {
            "asfmux": {
                "author": "Thiago Santos <thiagoss@embedded.ufcg.edu.br>",
                "description": "Muxes audio and video into an ASF stream",
                "hierarchy": [
                    "GstAsfMux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstTagSetter"
                ],
                "klass": "Codec/Muxer",
                "long-name": "ASF muxer",
                "pad-templates": {
                    "audio_%%u": {
                        "caps": "audio/x-wma:\n     wmaversion: [ 1, 3 ]\naudio/mpeg:\n          layer: 3\n    mpegversion: 1\n       channels: [ 1, 2 ]\n           rate: [ 8000, 96000 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "video/x-ms-asf:\n         parsed: true\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "video_%%u": {
                        "caps": "video/x-wmv:\n     wmvversion: [ 1, 3 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    }
                },
                "properties": {
                    "merge-stream-tags": {
                        "blurb": "If the stream metadata (received as events in the sink) should be merged to the main file metadata.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "packet-size": {
                        "blurb": "The ASF packets size (bytes)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4800",
                        "max": "-1",
                        "min": "18",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "padding": {
                        "blurb": "Size of the padding object to be added to the end of the header. If this less than 24 (the smaller size of an ASF object), no padding is added.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "preroll": {
                        "blurb": "The preroll time (milliseconds)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "streamable": {
                        "blurb": "If set to true, the output should be as if it is to be streamed and hence no indexes written or duration written.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "asfparse": {
                "author": "Thiago Santos <thiagoss@embedded.ufcg.edu.br>",
                "description": "Parses ASF",
                "hierarchy": [
                    "GstAsfParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Parser",
                "long-name": "ASF parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-ms-asf:\n         parsed: false\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-ms-asf:\n         parsed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "rtpasfpay": {
                "author": "Thiago Santos <thiagoss@embedded.ufcg.edu.br>",
                "description": "Payload-encodes ASF into RTP packets (MS_RTSP)",
                "hierarchy": [
                    "GstRtpAsfPay",
                    "GstRTPBasePayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Payloader/Network",
                "long-name": "RTP ASF payloader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-ms-asf:\n         parsed: true\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n          media: { (string)audio, (string)video, (string)application }\n     clock-rate: 1000\n  encoding-name: X-ASF-PF\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstasfmux",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "assrender": {
        "description": "ASS/SSA subtitle renderer",
        "elements": {
            "assrender": {
                "author": "Benjamin Schmitz <vortex@wolpzone.de>, Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Renders ASS/SSA subtitles with libass",
                "hierarchy": [
                    "GstAssRender",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Mixer/Video/Overlay/Subtitle",
                "long-name": "ASS/SSA Render",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, BGR, I420, YV12, AYUV, YUY2, UYVY, v308, Y41B, Y42B, Y444, NV12, NV21, A420, YUV9, YVU9, IYU1, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "text_sink": {
                        "caps": "application/x-ass:\napplication/x-ssa:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "video_sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, BGR, I420, YV12, AYUV, YUY2, UYVY, v308, Y41B, Y42B, Y444, NV12, NV21, A420, YUV9, YVU9, IYU1, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "embeddedfonts": {
                        "blurb": "Extract and use fonts embedded in the stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable": {
                        "blurb": "Enable rendering of subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wait-text": {
                        "blurb": "Whether to wait for subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstassrender",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "audiobuffersplit": {
        "description": "Audio buffer splitter",
        "elements": {
            "audiobuffersplit": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Splits raw audio buffers into equal sized chunks",
                "hierarchy": [
                    "GstAudioBufferSplit",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Audio/Filter",
                "long-name": "Audio Buffer Split",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alignment-threshold": {
                        "blurb": "Timestamp alignment threshold in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "discont-wait": {
                        "blurb": "Window of time in nanoseconds to wait before creating a discontinuity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "gapless": {
                        "blurb": "Insert silence/drop samples instead of creating a discontinuity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-silence-time": {
                        "blurb": "Do not insert silence in gapless mode if the gap exceeds this period (in ns) (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "output-buffer-duration": {
                        "blurb": "Output block size in seconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1/50",
                        "max": "2147483647/1",
                        "min": "1/2147483647",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstFraction",
                        "writable": true
                    },
                    "strict-buffer-size": {
                        "blurb": "Discard the last samples at EOS or discont if they are too small to fill a buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstaudiobuffersplit",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "audiofxbad": {
        "description": "Audio filters from gst-plugins-bad",
        "elements": {
            "audiochannelmix": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Mixes left/right channels of stereo audio",
                "hierarchy": [
                    "GstAudioChannelMix",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Audio/Mixer",
                "long-name": "Simple stereo audio mixer",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: 2\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: 2\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "left-to-left": {
                        "blurb": "Left channel to left channel gain",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "left-to-right": {
                        "blurb": "Left channel to right channel gain",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "right-to-left": {
                        "blurb": "Right channel to left channel gain",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "right-to-right": {
                        "blurb": "Right channel to right channel gain",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstaudiofxbad",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "audiolatency": {
        "description": "A plugin to measure audio latency",
        "elements": {
            "audiolatency": {
                "author": "Nirbheek Chauhan <nirbheek@centricular.com>",
                "description": "Measures the audio latency between the source and the sink",
                "hierarchy": [
                    "GstAudioLatency",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Audio/Util",
                "long-name": "AudioLatency",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "average-latency": {
                        "blurb": "The running average latency, in microseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1000000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": false
                    },
                    "last-latency": {
                        "blurb": "The last latency that was measured, in microseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1000000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": false
                    },
                    "print-latency": {
                        "blurb": "Print the measured latencies on stdout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstaudiolatency",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "audiomixmatrix": {
        "description": "Audio matrix mix",
        "elements": {
            "audiomixmatrix": {
                "author": "Vivia Nikolaidou <vivia@toolsonair.com>",
                "description": "Mixes a number of input channels into a number of output channels according to a transformation matrix",
                "hierarchy": [
                    "GstAudioMixMatrix",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Audio",
                "long-name": "Matrix audio mix",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n         format: { F32LE, F64LE, S16LE, S32LE }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n         format: { F32LE, F64LE, S16LE, S32LE }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel-mask": {
                        "blurb": "Output channel mask (-1 means \"default for these channels\")",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "in-channels": {
                        "blurb": "How many audio channels we have on the input side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "64",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "matrix": {
                        "blurb": "Transformation matrix for input/output channels",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstValueArray",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Whether to auto-negotiate input/output channels and matrix",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "manual (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAudioMixMatrixModeType",
                        "writable": true
                    },
                    "out-channels": {
                        "blurb": "How many audio channels we have on the output side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "64",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstaudiomixmatrix",
        "license": "LGPL",
        "other-types": {
            "GstAudioMixMatrixModeType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Manual mode: please specify input/output channels and transformation matrix",
                        "name": "manual",
                        "value": "0"
                    },
                    {
                        "desc": "First channels mode: input/output channels are auto-negotiated, transformation matrix is a truncated identity matrix",
                        "name": "first-channels",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "audiovisualizers": {
        "description": "Creates video visualizations of audio input",
        "elements": {
            "spacescope": {
                "author": "Stefan Kost <ensonic@users.sf.net>",
                "description": "Simple stereo visualizer",
                "hierarchy": [
                    "GstSpaceScope",
                    "GstAudioVisualizer",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Visualization",
                "long-name": "Stereo visualizer",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: 2\n   channel-mask: 0x0000000000000003\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "style": {
                        "blurb": "Drawing styles for the space scope display.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "dots (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSpaceScopeStyle",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "spectrascope": {
                "author": "Stefan Kost <ensonic@users.sf.net>",
                "description": "Simple frequency spectrum scope",
                "hierarchy": [
                    "GstSpectraScope",
                    "GstAudioVisualizer",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Visualization",
                "long-name": "Frequency spectrum scope",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: 2\n   channel-mask: 0x0000000000000003\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "synaescope": {
                "author": "Stefan Kost <ensonic@users.sf.net>",
                "description": "Creates video visualizations of audio input, using stereo and pitch information",
                "hierarchy": [
                    "GstSynaeScope",
                    "GstAudioVisualizer",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Visualization",
                "long-name": "Synaescope",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: 2\n   channel-mask: 0x0000000000000003\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "wavescope": {
                "author": "Stefan Kost <ensonic@users.sf.net>",
                "description": "Simple waveform oscilloscope",
                "hierarchy": [
                    "GstWaveScope",
                    "GstAudioVisualizer",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Visualization",
                "long-name": "Waveform oscilloscope",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: 2\n   channel-mask: 0x0000000000000003\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "style": {
                        "blurb": "Drawing styles for the wave form display.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "dots (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWaveScopeStyle",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstaudiovisualizers",
        "license": "LGPL",
        "other-types": {
            "GstSpaceScopeStyle": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "draw dots (default)",
                        "name": "dots",
                        "value": "0"
                    },
                    {
                        "desc": "draw lines",
                        "name": "lines",
                        "value": "1"
                    },
                    {
                        "desc": "draw color dots",
                        "name": "color-dots",
                        "value": "2"
                    },
                    {
                        "desc": "draw color lines",
                        "name": "color-lines",
                        "value": "3"
                    }
                ]
            },
            "GstWaveScopeStyle": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "draw dots (default)",
                        "name": "dots",
                        "value": "0"
                    },
                    {
                        "desc": "draw lines",
                        "name": "lines",
                        "value": "1"
                    },
                    {
                        "desc": "draw color dots",
                        "name": "color-dots",
                        "value": "2"
                    },
                    {
                        "desc": "draw color lines",
                        "name": "color-lines",
                        "value": "3"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "autoconvert": {
        "description": "Selects converter element based on caps",
        "elements": {
            "autoconvert": {
                "author": "Olivier Crete <olivier.crete@collabora.com>",
                "description": "Selects the right transform element based on the caps",
                "hierarchy": [
                    "GstAutoConvert",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin",
                "long-name": "Select converter based on caps",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "factories": {
                        "blurb": "GList of GstElementFactory objects to pick from (the element takes ownership of the list (NULL means it will go through all possible elements), can only be set once",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "gpointer",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "autovideoconvert": {
                "author": "Benjamin Gaignard <benjamin.gaignard@stericsson.com>",
                "description": "Selects the right color space converter based on the caps",
                "hierarchy": [
                    "GstAutoVideoConvert",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin",
                "long-name": "Select color space converter based on caps",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstautoconvert",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "avtp": {
        "description": "Audio/Video Transport Protocol (AVTP) plugin",
        "elements": {
            "avtpaafdepay": {
                "author": "Andre Guedes <andre.guedes@intel.com>",
                "description": "Extracts raw audio from AAF AVTPDUs",
                "hierarchy": [
                    "GstAvtpAafDepay",
                    "GstAvtpBaseDepayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Depayloader/Network/AVTP",
                "long-name": "AVTP Audio Format (AAF) depayloader",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S16BE, S24BE, S32BE, F32BE }\n           rate: { (int)8000, (int)16000, (int)24000, (int)32000, (int)44100, (int)48000, (int)88200, (int)96000, (int)176400, (int)192000 }\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "avtpaafpay": {
                "author": "Andre Guedes <andre.guedes@intel.com>",
                "description": "Payload-encode Raw audio into AAF AVTPDU (IEEE 1722)",
                "hierarchy": [
                    "GstAvtpAafPay",
                    "GstAvtpBasePayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Payloader/Network/AVTP",
                "long-name": "AVTP Audio Format (AAF) payloader",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { S16BE, S24BE, S32BE, F32BE }\n           rate: { (int)8000, (int)16000, (int)24000, (int)32000, (int)44100, (int)48000, (int)88200, (int)96000, (int)176400, (int)192000 }\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "timestamp-mode": {
                        "blurb": "AAF timestamping mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "normal (0)",
                        "mutable": "paused",
                        "readable": true,
                        "type": "GstAvtpAafTimestampMode",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "avtpcrfcheck": {
                "author": "Vedang Patel <vedang.patel@intel.com>",
                "description": "Check if the AVTP presentation time is synchronized with clock provided by a CRF stream",
                "hierarchy": [
                    "GstAvtpCrfCheck",
                    "GstAvtpCrfBase",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network/AVTP",
                "long-name": "Clock Reference Format (CRF) Checker",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-avtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-avtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "drop-invalid": {
                        "blurb": "Drop the packets which are not within 25%%%% of the sample period of the CRF timestamps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "avtpcrfsync": {
                "author": "Vedang Patel <vedang.patel@intel.com>",
                "description": "Synchronize Presentation Time from AVTPDUs so they are phase-locked with clock provided by CRF stream",
                "hierarchy": [
                    "GstAvtpCrfSync",
                    "GstAvtpCrfBase",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network/AVTP",
                "long-name": "Clock Reference Format (CRF) Synchronizer",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-avtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-avtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "avtpcvfdepay": {
                "author": "Ederson de Souza <ederson.desouza@intel.com>",
                "description": "Extracts compressed video from CVF AVTPDUs",
                "hierarchy": [
                    "GstAvtpCvfDepay",
                    "GstAvtpBaseDepayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Depayloader/Network/AVTP",
                "long-name": "AVTP Compressed Video Format (CVF) depayloader",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-h264:\n  stream-format: avc\n      alignment: au\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "avtpcvfpay": {
                "author": "Ederson de Souza <ederson.desouza@intel.com>",
                "description": "Payload-encode compressed video into CVF AVTPDU (IEEE 1722)",
                "hierarchy": [
                    "GstAvtpCvfPay",
                    "GstAvtpBasePayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Payloader/Network/AVTP",
                "long-name": "AVTP Compressed Video Format (CVF) payloader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n  stream-format: avc\n      alignment: au\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-interval-frames": {
                        "blurb": "Maximum number of network frames to be sent on each Measurement Interval",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "measurement-interval": {
                        "blurb": "Measurement interval of stream in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "250000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "mtu": {
                        "blurb": "Maximum Transit Unit (MTU) of underlying network in bytes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1500",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "avtpsink": {
                "author": "Andre Guedes <andre.guedes@intel.com>",
                "description": "Send AVTPDUs over the network",
                "hierarchy": [
                    "GstAvtpSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Network",
                "long-name": "Audio/Video Transport Protocol (AVTP) Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-avtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "address": {
                        "blurb": "Destination MAC address from Ethernet frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "01:AA:AA:AA:AA:AA",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ifname": {
                        "blurb": "Network interface utilized to transmit AVTPDUs",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "eth0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "priority": {
                        "blurb": "Priority configured into socket (SO_PRIORITY)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "avtpsrc": {
                "author": "Andre Guedes <andre.guedes@intel.com>",
                "description": "Receive AVTPDUs from the network",
                "hierarchy": [
                    "GstAvtpSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Network",
                "long-name": "Audio/Video Transport Protocol (AVTP) Source",
                "pad-templates": {
                    "src": {
                        "caps": "application/x-avtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "address": {
                        "blurb": "Destination MAC address to listen to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "01:AA:AA:AA:AA:AA",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ifname": {
                        "blurb": "Network interface utilized to receive AVTPDUs",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "eth0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstavtp",
        "license": "LGPL",
        "other-types": {
            "GstAvtpAafTimestampMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Normal timestamping mode",
                        "name": "normal",
                        "value": "0"
                    },
                    {
                        "desc": "Sparse timestamping mode",
                        "name": "sparse",
                        "value": "1"
                    }
                ]
            },
            "GstAvtpBaseDepayload": {
                "hierarchy": [
                    "GstAvtpBaseDepayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "streamid": {
                        "blurb": "Stream ID associated with the AVTPDU",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "12302652060662169600",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "paused",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                }
            },
            "GstAvtpBasePayload": {
                "hierarchy": [
                    "GstAvtpBasePayload",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "mtt": {
                        "blurb": "Maximum Transit Time (MTT) in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50000000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "processing-deadline": {
                        "blurb": "Maximum amount of time (in ns) the pipeline can take for processing the buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "20000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "streamid": {
                        "blurb": "Stream ID associated with the AVTPDU",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "12302652060662169600",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "tu": {
                        "blurb": "Timing Uncertainty (TU) in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                }
            },
            "GstAvtpCrfBase": {
                "hierarchy": [
                    "GstAvtpCrfBase",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "address": {
                        "blurb": "Destination MAC address expected on the Ethernet frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "01:AA:AA:AA:AA:AA",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ifname": {
                        "blurb": "Network interface utilized to receive CRF AVTPDUs",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "eth0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "streamid": {
                        "blurb": "Stream ID associated with the CRF AVTPDU",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "12302652060662173696",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                }
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "bayer": {
        "description": "Elements to convert Bayer images",
        "elements": {
            "bayer2rgb": {
                "author": "William Brack <wbrack@mmm.com.hk>",
                "description": "Converts video/x-bayer to video/x-raw",
                "hierarchy": [
                    "GstBayer2RGB",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Converter/Video",
                "long-name": "Bayer to RGB decoder for cameras",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-bayer:\n         format: { bggr, grbg, gbrg, rggb }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { RGBx, xRGB, BGRx, xBGR, RGBA, ARGB, BGRA, ABGR }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "rgb2bayer": {
                "author": "David Schleef <ds@entropywave.com>",
                "description": "Converts video/x-raw to video/x-bayer",
                "hierarchy": [
                    "GstRGB2Bayer",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Converter/Video",
                "long-name": "RGB to Bayer converter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-bayer:\n         format: { bggr, gbrg, grbg, rggb }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstbayer",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "bluez": {
        "description": "Bluez-based bluetooth support",
        "elements": {
            "a2dpsink": {
                "author": "Marcel Holtmann <marcel@holtmann.org>",
                "description": "Plays audio to an A2DP device",
                "hierarchy": [
                    "GstA2dpSink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Sink/Audio",
                "long-name": "Bluetooth A2DP sink",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-sbc:\n           rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n       channels: [ 1, 2 ]\n   channel-mode: { (string)mono, (string)dual, (string)stereo, (string)joint }\n         blocks: { (int)4, (int)8, (int)12, (int)16 }\n       subbands: { (int)4, (int)8 }\nallocation-method: { (string)snr, (string)loudness }\n        bitpool: [ 2, 64 ]\naudio/mpeg:\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "auto-connect": {
                        "blurb": "Automatically attempt to connect to device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "device": {
                        "blurb": "Bluetooth remote device address",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "transport": {
                        "blurb": "Use configured transport",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "avdtpsink": {
                "author": "Marcel Holtmann <marcel@holtmann.org>",
                "description": "Plays audio to an A2DP device",
                "hierarchy": [
                    "GstAvdtpSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Audio",
                "long-name": "Bluetooth AVDTP sink",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n          media: audio\n        payload: [ 96, 127 ]\n     clock-rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n  encoding-name: SBC\napplication/x-rtp:\n          media: audio\n        payload: 14\n     clock-rate: 90000\napplication/x-rtp:\n          media: audio\n        payload: [ 96, 127 ]\n     clock-rate: 90000\n  encoding-name: MPA\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "auto-connect": {
                        "blurb": "Automatically attempt to connect to device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "device": {
                        "blurb": "Bluetooth remote device address",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "transport": {
                        "blurb": "Use configured transport",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "avdtpsrc": {
                "author": "Arun Raghavan <arun.raghavan@collabora.co.uk>",
                "description": "Receives audio from an A2DP device",
                "hierarchy": [
                    "GstAvdtpSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio/Network/RTP",
                "long-name": "Bluetooth AVDTP Source",
                "pad-templates": {
                    "src": {
                        "caps": "application/x-rtp:\n          media: audio\n        payload: [ 96, 127 ]\n     clock-rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n  encoding-name: SBC\napplication/x-rtp:\n          media: audio\n        payload: [ 96, 127 ]\n     clock-rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)2400, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n  encoding-name: MP4A-LATM\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "transport": {
                        "blurb": "Use configured transport",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "transport-volume": {
                        "blurb": "Volume of the transport (only valid if transport is acquired)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "127",
                        "max": "127",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstbluez",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "bs2b": {
        "description": "Improve headphone listening of stereo audio recordsusing the bs2b library.",
        "elements": {
            "bs2b": {
                "author": "Christoph Reiter <reiter.christoph@gmail.com>",
                "description": "Improve headphone listening of stereo audio records using the bs2b library.",
                "hierarchy": [
                    "GstBs2b",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "Crossfeed effect",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { S8, U8, S16LE, S16BE, U16LE, U16BE, S32LE, S32BE, U32LE, U32BE, S24LE, S24BE, U24LE, U24BE, F32LE, F32BE, F64LE, F64BE }\n           rate: [ 2000, 384000 ]\n       channels: 2\n   channel-mask: 0x0000000000000003\n         layout: interleaved\naudio/x-raw:\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S8, U8, S16LE, S16BE, U16LE, U16BE, S32LE, S32BE, U32LE, U32BE, S24LE, S24BE, U24LE, U24BE, F32LE, F32BE, F64LE, F64BE }\n           rate: [ 2000, 384000 ]\n       channels: 2\n   channel-mask: 0x0000000000000003\n         layout: interleaved\naudio/x-raw:\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "fcut": {
                        "blurb": "Low-pass filter cut frequency (Hz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "700",
                        "max": "2000",
                        "min": "300",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "feed": {
                        "blurb": "Feed Level (dB/10)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "45",
                        "max": "150",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstbs2b",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "bz2": {
        "description": "Compress or decompress streams",
        "elements": {
            "bz2dec": {
                "author": "Lutz Mueller <lutz@users.sourceforge.net>",
                "description": "Decodes compressed streams",
                "hierarchy": [
                    "GstBz2dec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder",
                "long-name": "BZ2 decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-bzip:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "buffer-size": {
                        "blurb": "Buffer size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "first-buffer-size": {
                        "blurb": "Size of first buffer (used to determine the mime type of the uncompressed data)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "bz2enc": {
                "author": "Lutz Mueller <lutz@users.sourceforge.net>",
                "description": "Compresses streams",
                "hierarchy": [
                    "GstBz2enc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Encoder",
                "long-name": "BZ2 encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-bzip:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "block-size": {
                        "blurb": "Block size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "6",
                        "max": "9",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "buffer-size": {
                        "blurb": "Buffer size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstbz2",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "camerabin": {
        "description": "Take image snapshots and record movies from camera",
        "elements": {
            "camerabin": {
                "author": "Thiago Santos <thiago.sousa.santos@collabora.co.uk>",
                "description": "Take image snapshots and record movies from camera",
                "hierarchy": [
                    "GstCameraBin",
                    "GstPipeline",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstTagSetter"
                ],
                "klass": "Generic/Bin/Camera",
                "long-name": "Camera Bin",
                "properties": {
                    "audio-capture-caps": {
                        "blurb": "Format to capture audio for video recording represented as GstCaps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ANY",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": true
                    },
                    "audio-capture-supported-caps": {
                        "blurb": "Formats supported for capturing audio represented as GstCaps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": false
                    },
                    "audio-filter": {
                        "blurb": "The element that will process captured audio buffers when recording. (Should be set on NULL state)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "audio-source": {
                        "blurb": "The audio source element to be used on video recordings. It is only taken into use on the next null to ready transition",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "camera-source": {
                        "blurb": "The camera source element to be used. It is only taken into use on the next null to ready transition",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "flags": {
                        "blurb": "Flags to control behaviour",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "(none)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCamFlags",
                        "writable": true
                    },
                    "idle": {
                        "blurb": "If camerabin2 is idle (not doing captures).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "image-capture-caps": {
                        "blurb": "Caps for image capture",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ANY",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": true
                    },
                    "image-capture-supported-caps": {
                        "blurb": "Formats supported for capturing images represented as GstCaps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": false
                    },
                    "image-filter": {
                        "blurb": "The element that will process captured image frames. (Should be set on NULL state)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "image-profile": {
                        "blurb": "The GstEncodingProfile to use for image captures.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstEncodingProfile",
                        "writable": true
                    },
                    "location": {
                        "blurb": "Location to save the captured files. A %%d might be used on thefilename as a placeholder for a numeric index of the capture.Default is cap_%%d",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "cap_%%d",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "max-zoom": {
                        "blurb": "Digital zoom factor (e.g. 1.5 means 1.5x)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "3.40282e+38",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "The capture mode (still image capture or video recording)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "mode-image (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCameraBin2Mode",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "If the audio recording should be muted. Note that this still saves audio data to the resulting file, but they are silent. Use a video-profile without audio to disable audio completely",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "post-previews": {
                        "blurb": "If capture preview images should be posted to the bus",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preview-caps": {
                        "blurb": "The caps of the preview image to be posted",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": true
                    },
                    "preview-filter": {
                        "blurb": "The element that will process preview buffers. (Should be set on NULL state)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "video-capture-caps": {
                        "blurb": "Caps for video capture",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ANY",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": true
                    },
                    "video-capture-supported-caps": {
                        "blurb": "Formats supported for capturing videos represented as GstCaps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": false
                    },
                    "video-filter": {
                        "blurb": "The element that will process captured video frames. (Should be set on NULL state)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "video-profile": {
                        "blurb": "The GstEncodingProfile to use for video recording. Audio is enabled when this profile supports audio.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstEncodingProfile",
                        "writable": true
                    },
                    "viewfinder-caps": {
                        "blurb": "Restricts the caps that can be used on the viewfinder",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ANY",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": true
                    },
                    "viewfinder-filter": {
                        "blurb": "The element that will process frames going to the viewfinder. (Should be set on NULL state)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "viewfinder-sink": {
                        "blurb": "The video sink of the viewfinder. It is only taken into use on the next null to ready transition",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "viewfinder-supported-caps": {
                        "blurb": "The caps that the camera source can produce on the viewfinder pad",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": false
                    },
                    "zoom": {
                        "blurb": "Digital zoom factor (e.g. 1.5 means 1.5x)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "10",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "start-capture": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "stop-capture": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "viewfinderbin": {
                "author": "Thiago Santos <thiago.sousa.santos@collabora.com>",
                "description": "Viewfinder Bin used in camerabin2",
                "hierarchy": [
                    "GstViewfinderBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Sink/Video",
                "long-name": "Viewfinder Bin",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(ANY):\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "disable-converters": {
                        "blurb": "If video converters should be disabled (must be set on NULL)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "video-sink": {
                        "blurb": "the video output element to use (NULL = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "wrappercamerabinsrc": {
                "author": "Thiago Santos <thiago.sousa.santos@collabora.com>",
                "description": "Wrapper camera src element for camerabin2",
                "hierarchy": [
                    "GstWrapperCameraBinSrc",
                    "GstBaseCameraSrc",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Source/Video",
                "long-name": "Wrapper camera src element for camerabin2",
                "pad-templates": {
                    "imgsrc": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    },
                    "vfsrc": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    },
                    "vidsrc": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "video-source": {
                        "blurb": "The video source element to be used",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "video-source-filter": {
                        "blurb": "Optional video source filter element",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {}
            }
        },
        "filename": "gstcamerabin",
        "license": "LGPL",
        "other-types": {
            "GstCamFlags": {
                "kind": "flags",
                "values": [
                    {
                        "desc": "Do not use audio conversion elements",
                        "name": "no-audio-conversion",
                        "value": "0x00000001"
                    },
                    {
                        "desc": "Do not use video conversion elements",
                        "name": "no-video-conversion",
                        "value": "0x00000002"
                    },
                    {
                        "desc": "Do not use viewfinder conversion elements",
                        "name": "no-viewfinder-conversion",
                        "value": "0x00000004"
                    },
                    {
                        "desc": "Do not use image conversion elements",
                        "name": "no-image-conversion",
                        "value": "0x00000008"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "chromaprint": {
        "description": "Calculate Chromaprint fingerprint from audio files",
        "elements": {
            "chromaprint": {
                "author": "Lukáš Lalinský <lalinsky@gmail.com>",
                "description": "Find an audio fingerprint using the Chromaprint library",
                "hierarchy": [
                    "GstChromaprint",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Audio",
                "long-name": "Chromaprint fingerprinting element",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "duration": {
                        "blurb": "Number of seconds of audio to use for fingerprinting",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "120",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "fingerprint": {
                        "blurb": "Resulting fingerprint",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstchromaprint",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "closedcaption": {
        "description": "Closed Caption elements",
        "elements": {
            "cc708overlay": {
                "author": "Chengjun Wang <cjun.wang@samsung.com>",
                "description": "Decode cea608/cea708 data and overlay on proper position of a video buffer",
                "hierarchy": [
                    "GstCeaCcOverlay",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Mixer/Video/Overlay/Subtitle",
                "long-name": "Closed Caption overlay",
                "pad-templates": {
                    "cc_sink": {
                        "caps": "closedcaption/x-cea-708:\n         format: { cdp, cc_data }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "video_sink": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "font-desc": {
                        "blurb": "Pango font description of font to be used for rendering.\nSee documentation of pango_font_description_from_string for syntax.\nthis will override closed caption stream specified font style/pen size.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "service-number": {
                        "blurb": "Service number. Service 1 is designated as the Primary Caption Service, Service 2 is the Secondary Language Service.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "63",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "silent": {
                        "blurb": "Whether to render the text string",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "window-h-pos": {
                        "blurb": "Window's Horizontal position",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "center (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCeaCcOverlayWinHPos",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "cccombiner": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Combines GstVideoCaptionMeta with video input stream",
                "hierarchy": [
                    "GstCCCombiner",
                    "GstAggregator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter",
                "long-name": "Closed Caption Combiner",
                "pad-templates": {
                    "caption": {
                        "caps": "closedcaption/x-cea-608:\n         format: { raw, s334-1a }\nclosedcaption/x-cea-708:\n         format: { cc_data, cdp }\n",
                        "direction": "sink",
                        "presence": "request",
                        "type": "GstAggregatorPad"
                    },
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always",
                        "type": "GstAggregatorPad"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always",
                        "type": "GstAggregatorPad"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "ccconverter": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Converts Closed Captions between different formats",
                "hierarchy": [
                    "GstCCConverter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/ClosedCaption",
                "long-name": "Closed Caption Converter",
                "pad-templates": {
                    "sink": {
                        "caps": "closedcaption/x-cea-708:\n         format: cdp\nclosedcaption/x-cea-708:\n         format: cc_data\nclosedcaption/x-cea-608:\n         format: s334-1a\nclosedcaption/x-cea-608:\n         format: raw\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "closedcaption/x-cea-708:\n         format: cdp\nclosedcaption/x-cea-708:\n         format: cc_data\nclosedcaption/x-cea-608:\n         format: s334-1a\nclosedcaption/x-cea-608:\n         format: raw\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "ccextractor": {
                "author": "Edward Hervey <edward@centricular.com>",
                "description": "Extract GstVideoCaptionMeta from input stream",
                "hierarchy": [
                    "GstCCExtractor",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter",
                "long-name": "Closed Caption Extractor",
                "pad-templates": {
                    "caption": {
                        "caps": "closedcaption/x-cea-608:\n         format: { raw, s334-1a }\nclosedcaption/x-cea-708:\n         format: { cc_data, cdp }\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "remove-caption-meta": {
                        "blurb": "Remove caption meta from outgoing video buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {}
            },
            "line21decoder": {
                "author": "Edward Hervey <edward@centricular.com>",
                "description": "Extract line21 CC from SD video streams",
                "hierarchy": [
                    "GstLine21Decoder",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video/ClosedCaption",
                "long-name": "Line 21 CC Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YUY2, YVYU, UYVY, VYUY, v210 }\n interlace-mode: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, YUY2, YVYU, UYVY, VYUY, v210 }\n interlace-mode: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "line21encoder": {
                "author": "Mathieu Duponchelle <mathieu@centricular.com>",
                "description": "Inject line21 CC in SD video streams",
                "hierarchy": [
                    "GstLine21Encoder",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video/ClosedCaption",
                "long-name": "Line 21 CC Encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YUY2, YVYU, UYVY, VYUY }\n          width: 720\n         height: [ 23, 2147483647 ]\n interlace-mode: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, YUY2, YVYU, UYVY, VYUY }\n          width: 720\n         height: [ 23, 2147483647 ]\n interlace-mode: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstclosedcaption",
        "license": "LGPL",
        "other-types": {
            "GstCeaCcOverlayWinHPos": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "left",
                        "name": "left",
                        "value": "0"
                    },
                    {
                        "desc": "center",
                        "name": "center",
                        "value": "1"
                    },
                    {
                        "desc": "right",
                        "name": "right",
                        "value": "2"
                    },
                    {
                        "desc": "auto",
                        "name": "auto",
                        "value": "3"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "coloreffects": {
        "description": "Color Look-up Table filters",
        "elements": {
            "chromahold": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Removes all color information except for one color",
                "hierarchy": [
                    "GstChromaHold",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Chroma hold filter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGRA, ABGR, RGBA, xRGB, BGRx, xBGR, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGRA, ABGR, RGBA, xRGB, BGRx, xBGR, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "target-b": {
                        "blurb": "The Blue target",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "target-g": {
                        "blurb": "The Green target",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "target-r": {
                        "blurb": "The Red target",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "255",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "tolerance": {
                        "blurb": "Tolerance for the target color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "180",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "coloreffects": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Color Look-up Table filter",
                "hierarchy": [
                    "GstColorEffects",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Color Look-up Table filter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGRA, ABGR, RGBA, xRGB, BGRx, xBGR, RGBx, RGB, BGR, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGRA, ABGR, RGBA, xRGB, BGRx, xBGR, RGBx, RGB, BGR, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "preset": {
                        "blurb": "Color effect preset to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstColorEffectsPreset",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstcoloreffects",
        "license": "LGPL",
        "other-types": {
            "GstColorEffectsPreset": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Do nothing preset",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "Fake heat camera toning",
                        "name": "heat",
                        "value": "1"
                    },
                    {
                        "desc": "Sepia toning",
                        "name": "sepia",
                        "value": "2"
                    },
                    {
                        "desc": "Invert and slightly shade to blue",
                        "name": "xray",
                        "value": "3"
                    },
                    {
                        "desc": "Cross processing toning",
                        "name": "xpro",
                        "value": "4"
                    },
                    {
                        "desc": "Yellow foreground Blue background color filter",
                        "name": "yellowblue",
                        "value": "5"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "colormanagement": {
        "description": "Color management correction plugins",
        "elements": {
            "lcms": {
                "author": "Andreas Frisch <fraxinas@opendreambox.org>",
                "description": "Uses LittleCMS 2 to perform ICC profile correction",
                "hierarchy": [
                    "GstLcms",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "LCMS2 ICC correction",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGRA, ABGR, RGBA, xRGB, RGBx, xBGR, BGRx, RGB, BGR }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGRA, ABGR, RGBA, xRGB, RGBx, xBGR, BGRx, RGB, BGR }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "dest-profile": {
                        "blurb": "Specify the destination ICC profile file to apply",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "embedded-profile": {
                        "blurb": "Extract and use source profiles embedded in images",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "input-profile": {
                        "blurb": "Specify the input ICC profile file to apply",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "intent": {
                        "blurb": "Select the rendering intent of the color correction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "perceptual (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstLcmsIntent",
                        "writable": true
                    },
                    "lookup": {
                        "blurb": "Select the caching method for the color compensation calculations",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "cached (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstLcmsLookupMethod",
                        "writable": true
                    },
                    "preserve-black": {
                        "blurb": "Select whether purely black pixels should be preserved",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstcolormanagement",
        "license": "LGPL",
        "other-types": {
            "GstLcmsIntent": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Perceptual",
                        "name": "perceptual",
                        "value": "0"
                    },
                    {
                        "desc": "Relative Colorimetric",
                        "name": "relative",
                        "value": "1"
                    },
                    {
                        "desc": "Saturation",
                        "name": "saturation",
                        "value": "2"
                    },
                    {
                        "desc": "Absolute Colorimetric",
                        "name": "absolute",
                        "value": "3"
                    }
                ]
            },
            "GstLcmsLookupMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Uncached, calculate every pixel on the fly (very slow playback)",
                        "name": "uncached",
                        "value": "0"
                    },
                    {
                        "desc": "Precalculate lookup table (takes a long time getting READY)",
                        "name": "precalculated",
                        "value": "1"
                    },
                    {
                        "desc": "Calculate and cache color replacement values on first occurrence",
                        "name": "cached",
                        "value": "2"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "curl": {
        "description": "libcurl-based elements",
        "elements": {
            "curlfilesink": {
                "author": "Patricia Muscalu <patricia@axis.com>",
                "description": "Upload data over FILE protocol using libcurl",
                "hierarchy": [
                    "GstCurlFileSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Network",
                "long-name": "Curl file sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "create-dirs": {
                        "blurb": "Attempt to create missing directory included in the path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "curlftpsink": {
                "author": "Patricia Muscalu <patricia@axis.com>",
                "description": "Upload data over FTP protocol using libcurl",
                "hierarchy": [
                    "GstCurlFtpSink",
                    "GstCurlTlsSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Network",
                "long-name": "Curl ftp sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "create-dirs": {
                        "blurb": "Attempt to create missing directory included in the path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "create-tmp-file": {
                        "blurb": "Use a temporary file name when uploading a a file. When the transfer is complete,            this temporary file is renamed to the final file name. This is useful for ensuring           that remote systems do not read a partially uploaded file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "epsv-mode": {
                        "blurb": "Enable the use of the EPSV command when doing passive FTP transfers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ftp-port": {
                        "blurb": "The PORT instruction tells the remote server to connect to the IP address",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "temp-file-name": {
                        "blurb": "Filename pattern to use when generating a temporary filename for uploads",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "curlhttpsink": {
                "author": "Patricia Muscalu <patricia@axis.com>",
                "description": "Upload data over HTTP/HTTPS protocol using libcurl",
                "hierarchy": [
                    "GstCurlHttpSink",
                    "GstCurlTlsSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Network",
                "long-name": "Curl http sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "content-type": {
                        "blurb": "The mime type of the body of the request",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "proxy": {
                        "blurb": "HTTP proxy server URI",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "proxy-passwd": {
                        "blurb": "Proxy user password to use for proxy authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "proxy-port": {
                        "blurb": "HTTP proxy server port",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3128",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "proxy-user": {
                        "blurb": "Proxy user name to use for proxy authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "use-content-length": {
                        "blurb": "Use the Content-Length HTTP header instead of Transfer-Encoding header",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "curlhttpsrc": {
                "author": "Sam Hurst <samuelh@rd.bbc.co.uk>",
                "description": "Receiver data as a client over a network via HTTP using cURL",
                "hierarchy": [
                    "GstCurlHttpSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "HTTP Client Source using libcURL",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "automatic-redirect": {
                        "blurb": "Allow HTTP Redirections (HTTP Status Code 300 series)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "compress": {
                        "blurb": "Allow compressed content encodings",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cookies": {
                        "blurb": "List of HTTP Cookies",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GStrv",
                        "writable": true
                    },
                    "extra-headers": {
                        "blurb": "Extra headers to append to the HTTP request",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "request-headers;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": true
                    },
                    "http-version": {
                        "blurb": "The preferred HTTP protocol version",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2.0 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCurlHttpVersionType",
                        "writable": true
                    },
                    "keep-alive": {
                        "blurb": "Toggle keep-alive for connection reuse.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "location": {
                        "blurb": "URI of resource to read",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "max-connection-time": {
                        "blurb": "Maximum amount of time to keep-alive HTTP connections",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "60",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-connections": {
                        "blurb": "Maximum number of concurrent connections allowed for HTTP/1.x",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "255",
                        "max": "255",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-connections-per-proxy": {
                        "blurb": "Maximum number of concurrent connections allowed per proxy for HTTP/1.x",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "60",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-connections-per-server": {
                        "blurb": "Maximum number of connections allowed per server for HTTP/1.x",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "60",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-redirect": {
                        "blurb": "Maximum number of permitted redirections. -1 is unlimited.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "255",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "proxy": {
                        "blurb": "URI of HTTP proxy server",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "proxy-id": {
                        "blurb": "HTTP proxy URI user id for authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "proxy-pw": {
                        "blurb": "HTTP proxy URI password for authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "retries": {
                        "blurb": "Maximum number of retries until giving up (-1=infinite)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "9999",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ssl-ca-file": {
                        "blurb": "Location of an SSL CA file to use for checking SSL certificates",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssl-strict": {
                        "blurb": "Strict SSL certificate checking",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Value in seconds before timeout a blocking request (0 = no timeout)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3600",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "user-agent": {
                        "blurb": "URI of resource requested",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "GStreamer curlhttpsrc libcurl/<curl-version>",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "user-id": {
                        "blurb": "HTTP location URI user id for authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "user-pw": {
                        "blurb": "HTTP location URI password for authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "curlsftpsink": {
                "author": "Sorin L. <sorin@axis.com>",
                "description": "Upload data over the SFTP protocol using libcurl",
                "hierarchy": [
                    "GstCurlSftpSink",
                    "GstCurlSshSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Network",
                "long-name": "Curl sftp sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "async": {
                        "blurb": "Go asynchronously to PAUSED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "blocksize": {
                        "blurb": "Size in bytes to pull per buffer (0 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "create-dirs": {
                        "blurb": "Attempt to create missing directories",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable-last-sample": {
                        "blurb": "Enable the last-sample property",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "file-name": {
                        "blurb": "The base file name for the uploaded images",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "last-sample": {
                        "blurb": "The last sample received in the sink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSample",
                        "writable": false
                    },
                    "location": {
                        "blurb": "URI location to write to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "localhost:5555",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bits per second to render (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "max-lateness": {
                        "blurb": "Maximum number of nanoseconds that a buffer can be late before it is dropped (-1 unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "passwd": {
                        "blurb": "User password to use for server authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "processing-deadline": {
                        "blurb": "Maximum processing time for a buffer in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "20000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "qos": {
                        "blurb": "Generate Quality-of-Service events upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "qos-dscp": {
                        "blurb": "Quality of Service, differentiated services code point (0 default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "63",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "render-delay": {
                        "blurb": "Additional render delay of the sink in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "ssh-accept-unknownhost": {
                        "blurb": "Accept an unknown remote public host key",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssh-auth-type": {
                        "blurb": "SSH authentication method to authenticate on the SSH/SFTP server",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCurlSshAuthType",
                        "writable": true
                    },
                    "ssh-host-pubkey-md5": {
                        "blurb": "MD5 checksum (32 hexadecimal digits, case-insensitive) of the remote host's public key",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-key-passphrase": {
                        "blurb": "The passphrase used to protect the SSH private key file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-knownhosts": {
                        "blurb": "The complete path & filename of the SSH 'known_hosts' file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-priv-keyfile": {
                        "blurb": "The complete path & filename of the SSH private key file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-pub-keyfile": {
                        "blurb": "The complete path & filename of the SSH public key file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Sink Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-gst-base-sink-stats, average-rate=(double)0, dropped=(guint64)0, rendered=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "sync": {
                        "blurb": "Sync on the clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "throttle-time": {
                        "blurb": "The time to keep between rendered buffers (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Number of seconds waiting to write before timeout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Timestamp offset in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "user": {
                        "blurb": "User name to use for server authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "curlsmtpsink": {
                "author": "Patricia Muscalu <patricia@axis.com>",
                "description": "Upload data over SMTP protocol using libcurl",
                "hierarchy": [
                    "GstCurlSmtpSink",
                    "GstCurlTlsSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Network",
                "long-name": "Curl smtp sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "content-type": {
                        "blurb": "The mime type of the body of the request",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "mail-from": {
                        "blurb": "Single address that the given mail should get sent from",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "mail-rcpt": {
                        "blurb": "Single address that the given mail should get sent to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "message-body": {
                        "blurb": "Message body",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "nbr-attachments": {
                        "blurb": "Number attachments to send",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pop-location": {
                        "blurb": "URL POP used for authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "pop-passwd": {
                        "blurb": "User password to use for POP server authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "pop-user": {
                        "blurb": "User name to use for POP server authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "subject": {
                        "blurb": "Mail subject",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "use-ssl": {
                        "blurb": "Use SSL/TLS for the connection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstcurl",
        "license": "LGPL",
        "other-types": {
            "GstCurlBaseSink": {
                "hierarchy": [
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "file-name": {
                        "blurb": "The base file name for the uploaded images",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "location": {
                        "blurb": "URI location to write to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "localhost:5555",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "passwd": {
                        "blurb": "User password to use for server authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "qos-dscp": {
                        "blurb": "Quality of Service, differentiated services code point (0 default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "63",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Number of seconds waiting to write before timeout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "user": {
                        "blurb": "User name to use for server authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                }
            },
            "GstCurlHttpVersionType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "HTTP Version 1.0",
                        "name": "1.0",
                        "value": "0"
                    },
                    {
                        "desc": "HTTP Version 1.1",
                        "name": "1.1",
                        "value": "1"
                    },
                    {
                        "desc": "HTTP Version 2.0",
                        "name": "2.0",
                        "value": "2"
                    }
                ]
            },
            "GstCurlSshAuthType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Not allowed",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "Public/private key files",
                        "name": "pubkey",
                        "value": "1"
                    },
                    {
                        "desc": "Password authentication",
                        "name": "password",
                        "value": "2"
                    }
                ]
            },
            "GstCurlSshSink": {
                "hierarchy": [
                    "GstCurlSshSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "ssh-accept-unknownhost": {
                        "blurb": "Accept an unknown remote public host key",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssh-auth-type": {
                        "blurb": "SSH authentication method to authenticate on the SSH/SFTP server",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCurlSshAuthType",
                        "writable": true
                    },
                    "ssh-host-pubkey-md5": {
                        "blurb": "MD5 checksum (32 hexadecimal digits, case-insensitive) of the remote host's public key",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-key-passphrase": {
                        "blurb": "The passphrase used to protect the SSH private key file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-knownhosts": {
                        "blurb": "The complete path & filename of the SSH 'known_hosts' file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-priv-keyfile": {
                        "blurb": "The complete path & filename of the SSH private key file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ssh-pub-keyfile": {
                        "blurb": "The complete path & filename of the SSH public key file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                }
            },
            "GstCurlTlsSink": {
                "hierarchy": [
                    "GstCurlTlsSink",
                    "GstCurlBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "ca-cert": {
                        "blurb": "CA certificate to use in order to verify the peer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ca-path": {
                        "blurb": "CA directory path to use in order to verify the peer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "crypto-engine": {
                        "blurb": "OpenSSL crypto engine to use for cipher operations",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "insecure": {
                        "blurb": "Allow curl to perform insecure SSL connections",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                }
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "d3d": {
        "description": "Direct3D plugin",
        "elements": {
            "d3dvideosink": {
                "author": "David Hoyt <dhoyt@hoytsoft.org>, Roland Krikava <info@bluedigits.com>",
                "description": "Display data using a Direct3D video renderer",
                "hierarchy": [
                    "GstD3DVideoSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstNavigation",
                    "GstVideoOverlay"
                ],
                "klass": "Sink/Video",
                "long-name": "Direct3D video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, UYVY, YUY2, NV12, BGRx, RGBx, BGRA, RGBA, BGR, RGB16, RGB15 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:SystemMemory, meta:GstVideoOverlayComposition):\n         format: { I420, YV12, UYVY, YUY2, NV12, BGRx, RGBx, BGRA, RGBA, BGR, RGB16, RGB15 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "create-render-window": {
                        "blurb": "If no window ID is given, a new render window is created",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable-navigation-events": {
                        "blurb": "When enabled, navigation events are sent upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "force-aspect-ratio": {
                        "blurb": "When enabled, scaling will respect original aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "stream-stop-on-close": {
                        "blurb": "If the render window is closed stop stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstd3d",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "d3d11": {
        "description": "Direct3D11 plugin",
        "elements": {
            "d3d11convert": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>, Jeongki Kim <jeongki.kim@jeongki.kim>",
                "description": "Resizes video and allow color conversion using D3D11",
                "hierarchy": [
                    "GstD3D11ColorConvert",
                    "GstD3D11BaseFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Converter/Scaler/Video/Hardware",
                "long-name": "Direct3D11 colorspace converter and scaler",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "d3d11download": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "Downloads D3D11 texture memory into system memory",
                "hierarchy": [
                    "GstD3D11Download",
                    "GstD3D11BaseFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Direct3D11 downloader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:SystemMemory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:SystemMemory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "d3d11h264dec": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "A Direct3D11 based H.264 video decoder",
                "hierarchy": [
                    "GstD3D11H264Dec",
                    "GstH264Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "Direct3D11 H.264 Intel(R) Iris(R) Plus Graphics Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n  stream-format: { (string)avc, (string)avc3, (string)byte-stream }\n      alignment: au\n        profile: { (string)high, (string)main, (string)constrained-baseline, (string)baseline }\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 64, 4096 ]\n         height: [ 64, 4096 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: NV12\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 64, 4096 ]\n         height: [ 64, 4096 ]\nvideo/x-raw:\n         format: NV12\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 64, 4096 ]\n         height: [ 64, 4096 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "DXGI Adapter index for creating device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "device-id": {
                        "blurb": "DXGI Device ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "35410",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "vendor-id": {
                        "blurb": "DXGI Vendor ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "32902",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "secondary"
            },
            "d3d11h265dec": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "A Direct3D11 based H.265 video decoder",
                "hierarchy": [
                    "GstD3D11H265Dec",
                    "GstH265Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "Direct3D11 H.265 Intel(R) Iris(R) Plus Graphics Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h265:\n  stream-format: { (string)hev1, (string)hvc1, (string)byte-stream }\n      alignment: au\n      framerate: [ 0/1, 2147483647/1 ]\n        profile: { (string)main, (string)main-10 }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\nvideo/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "DXGI Adapter index for creating device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "device-id": {
                        "blurb": "DXGI Device ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "35410",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "vendor-id": {
                        "blurb": "DXGI Vendor ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "32902",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "secondary"
            },
            "d3d11upload": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "Uploads data into D3D11 texture memory",
                "hierarchy": [
                    "GstD3D11Upload",
                    "GstD3D11BaseFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Direct3D11 uploader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:SystemMemory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "d3d11videosink": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "A Direct3D11 based videosink",
                "hierarchy": [
                    "GstD3D11VideoSinkBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstVideoOverlay",
                    "GstNavigation"
                ],
                "klass": "Sink/Video",
                "long-name": "Direct3D11 video sink bin",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:SystemMemory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "Adapter index for creating device (-1 for default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "async": {
                        "blurb": "Go asynchronously to PAUSED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "blocksize": {
                        "blurb": "Size in bytes to pull per buffer (0 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "enable-last-sample": {
                        "blurb": "Enable the last-sample property",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable-navigation-events": {
                        "blurb": "When enabled, navigation events are sent upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "force-aspect-ratio": {
                        "blurb": "When enabled, scaling will respect original aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fullscreen": {
                        "blurb": "Ignored when \"fullscreen-toggle-mode\" does not include \"property\"",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fullscreen-toggle-mode": {
                        "blurb": "Full screen toggle mode used to trigger fullscreen mode change",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstD3D11WindowFullscreenToggleMode",
                        "writable": true
                    },
                    "last-sample": {
                        "blurb": "The last sample received in the sink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSample",
                        "writable": false
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bits per second to render (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "max-lateness": {
                        "blurb": "Maximum number of nanoseconds that a buffer can be late before it is dropped (-1 unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5000000",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "processing-deadline": {
                        "blurb": "Maximum processing deadline in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "15000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "qos": {
                        "blurb": "Generate Quality-of-Service events upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "render-delay": {
                        "blurb": "Additional render delay of the sink in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "show-preroll-frame": {
                        "blurb": "Whether to render video frames during preroll",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Sink Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-gst-base-sink-stats, average-rate=(double)0, dropped=(guint64)0, rendered=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "sync": {
                        "blurb": "Sync on the clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "throttle-time": {
                        "blurb": "The time to keep between rendered buffers (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Timestamp offset in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "d3d11videosinkelement": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "A Direct3D11 based videosink",
                "hierarchy": [
                    "GstD3D11VideoSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstVideoOverlay",
                    "GstNavigation"
                ],
                "klass": "Sink/Video",
                "long-name": "Direct3D11 video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:D3D11Memory, meta:GstVideoOverlayComposition):\n         format: { BGRA, RGBA, RGB10A2_LE, VUYA, NV12, P010_10LE, P016_LE, I420, I420_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "Adapter index for creating device (-1 for default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "enable-navigation-events": {
                        "blurb": "When enabled, navigation events are sent upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "force-aspect-ratio": {
                        "blurb": "When enabled, scaling will respect original aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fullscreen": {
                        "blurb": "Ignored when \"fullscreen-toggle-mode\" does not include \"property\"",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fullscreen-toggle-mode": {
                        "blurb": "Full screen toggle mode used to trigger fullscreen mode change",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstD3D11WindowFullscreenToggleMode",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "d3d11vp8dec": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "A Direct3D11 based VP8 video decoder",
                "hierarchy": [
                    "GstD3D11Vp8Dec",
                    "GstVp8Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "Direct3D11 VP8 Intel(R) Iris(R) Plus Graphics Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-vp8:\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 64, 4096 ]\n         height: [ 64, 4096 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n      framerate: [ 0/1, 2147483647/1 ]\n         format: NV12\n          width: [ 64, 4096 ]\n         height: [ 64, 4096 ]\nvideo/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n         format: NV12\n          width: [ 64, 4096 ]\n         height: [ 64, 4096 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "DXGI Adapter index for creating device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "device-id": {
                        "blurb": "DXGI Device ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "35410",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "vendor-id": {
                        "blurb": "DXGI Vendor ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "32902",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "secondary"
            },
            "d3d11vp9dec": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "A Direct3D11 based VP9 video decoder",
                "hierarchy": [
                    "GstD3D11Vp9Dec",
                    "GstVp9Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "Direct3D11 VP9 Intel(R) Iris(R) Plus Graphics Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-vp9:\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:D3D11Memory):\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\nvideo/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "DXGI Adapter index for creating device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "device-id": {
                        "blurb": "DXGI Device ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "35410",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "vendor-id": {
                        "blurb": "DXGI Vendor ID",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "32902",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstd3d11",
        "license": "LGPL",
        "other-types": {
            "GstD3D11BaseFilter": {
                "hierarchy": [
                    "GstD3D11BaseFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "adapter": {
                        "blurb": "Adapter index for creating device (-1 for default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                }
            },
            "GstD3D11WindowFullscreenToggleMode": {
                "kind": "flags",
                "values": [
                    {
                        "desc": "GST_D3D11_WINDOW_FULLSCREEN_TOGGLE_MODE_NONE",
                        "name": "none",
                        "value": "0x00000000"
                    },
                    {
                        "desc": "GST_D3D11_WINDOW_FULLSCREEN_TOGGLE_MODE_ALT_ENTER",
                        "name": "alt-enter",
                        "value": "0x00000002"
                    },
                    {
                        "desc": "GST_D3D11_WINDOW_FULLSCREEN_TOGGLE_MODE_PROPERTY",
                        "name": "property",
                        "value": "0x00000004"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dash": {
        "description": "DASH plugin",
        "elements": {
            "dashdemux": {
                "author": "David Corvoysier <david.corvoysier@orange.com>\n                Hamid Zakari <hamid.zakari@gmail.com>\n                Gianluca Gennari <gennarone@gmail.com>",
                "description": "Dynamic Adaptive Streaming over HTTP demuxer",
                "hierarchy": [
                    "GstDashDemux",
                    "GstAdaptiveDemux",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Codec/Demuxer/Adaptive",
                "long-name": "DASH Demuxer",
                "pad-templates": {
                    "audio_%%02u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "sink": {
                        "caps": "application/dash+xml:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "subtitle_%%02u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "video_%%02u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "bandwidth-usage": {
                        "blurb": "Percentage of the available bandwidth to use when selecting representations (deprecated)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.8",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "Max of bitrate supported by target video decoder (0 = no maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-buffering-time": {
                        "blurb": "Maximum number of seconds of buffer accumulated during playback(deprecated)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "-1",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-video-framerate": {
                        "blurb": "Max video framerate to select (0/1 = no maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0/1",
                        "max": "2147483647/1",
                        "min": "0/1",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFraction",
                        "writable": true
                    },
                    "max-video-height": {
                        "blurb": "Max video height to select (0 = no maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-video-width": {
                        "blurb": "Max video width to select (0 = no maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "presentation-delay": {
                        "blurb": "Default presentation delay (in seconds, milliseconds or fragments) (e.g. 12s, 2500ms, 3f)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10s",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {}
            },
            "dashsink": {
                "author": "Stéphane Cerveau <scerveau@collabora.com>",
                "description": "Dynamic Adaptive Streaming over HTTP sink",
                "hierarchy": [
                    "GstDashSink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Sink",
                "long-name": "DASH Sink",
                "pad-templates": {
                    "audio_%%u": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "subtitle_%%u": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "video_%%u": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    }
                },
                "properties": {
                    "dynamic": {
                        "blurb": "Provides a dynamic mpd",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "min-buffer-time": {
                        "blurb": "Provides to the manifest a minimum buffer time in milliseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "minimum-update-period": {
                        "blurb": "Provides to the manifest a minimum update period in milliseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "mpd-baseurl": {
                        "blurb": "BaseURL to set in the MPD",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "mpd-filename": {
                        "blurb": "filename of the mpd to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "dash.mpd",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "mpd-root-path": {
                        "blurb": "Path where the MPD and its fragents will be written",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "muxer": {
                        "blurb": "Muxer type to be used by dashsink to generate the fragment",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ts (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDashSinkMuxerType",
                        "writable": true
                    },
                    "period-duration": {
                        "blurb": "Provides the explicit duration of a period in milliseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "send-keyframe-requests": {
                        "blurb": "Send keyframe requests to ensure correct fragmentation. If this is disabled then the input must have keyframes in regular intervals",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "target-duration": {
                        "blurb": "The target duration in seconds of a segment/file. (0 - disabled, useful for management of segment duration by the streaming server)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "15",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "use-segment-list": {
                        "blurb": "Use segment list instead of segment template to create the segments",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstdash",
        "license": "LGPL",
        "other-types": {
            "GstDashSinkMuxerType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Use mpegtsmux",
                        "name": "ts",
                        "value": "0"
                    },
                    {
                        "desc": "Use mp4mux",
                        "name": "mp4",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dc1394": {
        "description": "1394 IIDC video source",
        "elements": {
            "dc1394src": {
                "author": "Antoine Tremblay <hexa00@gmail.com>",
                "description": "libdc1394 based source for IIDC cameras",
                "hierarchy": [
                    "GstDC1394Src",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "1394 IIDC Video Source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: IYU2\n          width: 160\n         height: 120\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: UYVY\n          width: 320\n         height: 240\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: IYU1\n          width: 640\n         height: 480\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: UYVY\n          width: 640\n         height: 480\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: RGB\n          width: 640\n         height: 480\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY8\n          width: 640\n         height: 480\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: 640\n         height: 480\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY16_BE\n          width: 640\n         height: 480\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: UYVY\n          width: 800\n         height: 600\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: RGB\n          width: 800\n         height: 600\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY8\n          width: 800\n         height: 600\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: 800\n         height: 600\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: UYVY\n          width: 1024\n         height: 768\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: RGB\n          width: 1024\n         height: 768\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY8\n          width: 1024\n         height: 768\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: 1024\n         height: 768\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY16_BE\n          width: 800\n         height: 600\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY16_BE\n          width: 1024\n         height: 768\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: UYVY\n          width: 1280\n         height: 960\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: RGB\n          width: 1280\n         height: 960\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY8\n          width: 1280\n         height: 960\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: 1280\n         height: 960\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: UYVY\n          width: 1600\n         height: 1200\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: RGB\n          width: 1600\n         height: 1200\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY8\n          width: 1600\n         height: 1200\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: 1600\n         height: 1200\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY16_BE\n          width: 1280\n         height: 960\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: GRAY16_BE\n          width: 1600\n         height: 1200\n      framerate: { (fraction)15/8, (fraction)15/4, (fraction)15/2, (fraction)15/1, (fraction)30/1, (fraction)60/1, (fraction)120/1, (fraction)240/1 }\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-raw:\n         format: IYU2\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-raw:\n         format: UYVY\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-raw:\n         format: IYU1\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\nvideo/x-bayer:\n         format: { bggr, rggb, grbg, gbrg }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 1/2147483647, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blocksize": {
                        "blurb": "Size in bytes to read per buffer (-1 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "dma": {
                        "blurb": "The number of frames in the Direct Memory Access ring buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "-1",
                        "min": "1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "do-timestamp": {
                        "blurb": "Apply current stream time to buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "guid": {
                        "blurb": "The hexadecimal representation of the GUID of the camera (use first camera available if null)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "iso": {
                        "blurb": "The ISO bandwidth in Mbps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "400 (400)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstDC1394ISOSpeed",
                        "writable": true
                    },
                    "num-buffers": {
                        "blurb": "Number of buffers to output before sending EOS (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "typefind": {
                        "blurb": "Run typefind before negotiating (deprecated, non-functional)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "unit": {
                        "blurb": "The unit number of the camera (-1 if no unit number is used)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstdc1394",
        "license": "LGPL",
        "other-types": {
            "GstDC1394ISOSpeed": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "DC1394 ISO speed 100",
                        "name": "100",
                        "value": "100"
                    },
                    {
                        "desc": "DC1394 ISO speed 200",
                        "name": "200",
                        "value": "200"
                    },
                    {
                        "desc": "DC1394 ISO speed 400",
                        "name": "400",
                        "value": "400"
                    },
                    {
                        "desc": "DC1394 ISO speed 800",
                        "name": "800",
                        "value": "800"
                    },
                    {
                        "desc": "DC1394 ISO speed 1600",
                        "name": "1600",
                        "value": "1600"
                    },
                    {
                        "desc": "DC1394 ISO speed 3200",
                        "name": "3200",
                        "value": "3200"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "de265": {
        "description": "HEVC/H.265 decoder using libde265",
        "elements": {
            "libde265dec": {
                "author": "struktur AG <opensource@struktur.de>",
                "description": "Decodes HEVC/H.265 video streams using libde265",
                "hierarchy": [
                    "GstLibde265Dec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video",
                "long-name": "HEVC/H.265 decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h265:\n  stream-format: { (string)hvc1, (string)hev1, (string)byte-stream }\n      alignment: { (string)au, (string)nal }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: I420\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-threads": {
                        "blurb": "Maximum number of worker threads to spawn. (0 = auto)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstde265",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "debugutilsbad": {
        "description": "Collection of elements that may or may not be useful for debugging",
        "elements": {
            "checksumsink": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Calculates a checksum for buffers",
                "hierarchy": [
                    "GstChecksumSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Debug/Sink",
                "long-name": "Checksum sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "hash": {
                        "blurb": "Checksum type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "sha1 (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstChecksumSinkHash",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "chopmydata": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "FIXME",
                "hierarchy": [
                    "GstChopMyData",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Generic",
                "long-name": "FIXME",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-size": {
                        "blurb": "Maximum size of outgoing buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-size": {
                        "blurb": "Minimum size of outgoing buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "step-size": {
                        "blurb": "Step increment for random buffer sizes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "clockselect": {
                "author": "Ederson de Souza <ederson.desouza@intel.com>",
                "description": "Pipeline that enables different clocks",
                "hierarchy": [
                    "GstClockSelect",
                    "GstPipeline",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin",
                "long-name": "Clock select",
                "properties": {
                    "clock-id": {
                        "blurb": "ID of pipeline clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstClockSelectClockId",
                        "writable": true
                    },
                    "ptp-domain": {
                        "blurb": "PTP clock domain (meaningful only when Clock ID is PTP)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "compare": {
                "author": "Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>",
                "description": "Compares incoming buffers",
                "hierarchy": [
                    "GstCompare",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Debug",
                "long-name": "Compare buffers",
                "pad-templates": {
                    "check": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "meta": {
                        "blurb": "Indicates which metadata should be compared",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "memory+meta+timestamps+flags",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstBufferCopyFlags",
                        "writable": true
                    },
                    "method": {
                        "blurb": "Method to compare buffer content",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "mem (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCompareMethod",
                        "writable": true
                    },
                    "offset-ts": {
                        "blurb": "Consider OFFSET and OFFSET_END part of timestamp metadata",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "threshold": {
                        "blurb": "Threshold beyond which to consider content different as determined by content-method",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "upper": {
                        "blurb": "Whether threshold value is upper bound or lower bound for difference measure",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "debugspy": {
                "author": "Guillaume Emont <gemont@igalia.com>",
                "description": "DebugSpy provides information on buffers with bus messages",
                "hierarchy": [
                    "GstDebugSpy",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Debug",
                "long-name": "DebugSpy",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "checksum-type": {
                        "blurb": "Checksum algorithm to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "sha1 (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GChecksumType",
                        "writable": true
                    },
                    "silent": {
                        "blurb": "Produce verbose output ?",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "errorignore": {
                "author": "Vivia Nikolaidou <vivia@toolsonair.com>",
                "description": "Pass through all packets but ignore some GstFlowReturn types",
                "hierarchy": [
                    "GstErrorIgnore",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Generic",
                "long-name": "Convert some GstFlowReturn types into others",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "convert-to": {
                        "blurb": "Which GstFlowReturn value we should convert to when ignoring",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "not-linked (-1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFlowReturn",
                        "writable": true
                    },
                    "ignore-error": {
                        "blurb": "Whether to ignore GST_FLOW_ERROR",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ignore-notlinked": {
                        "blurb": "Whether to ignore GST_FLOW_NOT_LINKED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ignore-notnegotiated": {
                        "blurb": "Whether to ignore GST_FLOW_NOT_NEGOTIATED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "fakevideosink": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com>",
                "description": "Fake video display that allows zero-copy",
                "hierarchy": [
                    "GstFakeVideoSink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Video/Sink",
                "long-name": "Fake Video Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "allocation-meta-flags": {
                        "blurb": "Flags to control behaviour",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "overlay-composition+crop",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFakeVideoSinkAllocationMetaFlags",
                        "writable": true
                    },
                    "async": {
                        "blurb": "Go asynchronously to PAUSED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "blocksize": {
                        "blurb": "Size in bytes to pull per buffer (0 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "can-activate-pull": {
                        "blurb": "Can activate in pull mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "can-activate-push": {
                        "blurb": "Can activate in push mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "drop-out-of-segment": {
                        "blurb": "Drop and don't render / hand off out-of-segment buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dump": {
                        "blurb": "Dump buffer contents to stdout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable-last-sample": {
                        "blurb": "Enable the last-sample property",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "last-message": {
                        "blurb": "The message describing current status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "last-sample": {
                        "blurb": "The last sample received in the sink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSample",
                        "writable": false
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bits per second to render (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "max-lateness": {
                        "blurb": "Maximum number of nanoseconds that a buffer can be late before it is dropped (-1 unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5000000",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "num-buffers": {
                        "blurb": "Number of buffers to accept going EOS",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "processing-deadline": {
                        "blurb": "Maximum processing time for a buffer in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "15000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "qos": {
                        "blurb": "Generate Quality-of-Service events upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "render-delay": {
                        "blurb": "Additional render delay of the sink in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "signal-handoffs": {
                        "blurb": "Send a signal before unreffing the buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "silent": {
                        "blurb": "Don't produce last_message events",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "state-error": {
                        "blurb": "Generate a state change error",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFakeSinkStateError",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Sink Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-gst-base-sink-stats, average-rate=(double)0, dropped=(guint64)0, rendered=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "sync": {
                        "blurb": "Sync on the clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "throttle-time": {
                        "blurb": "The time to keep between rendered buffers (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Timestamp offset in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "fpsdisplaysink": {
                "author": "Zeeshan Ali <zeeshan.ali@nokia.com>, Stefan Kost <stefan.kost@nokia.com>",
                "description": "Shows the current frame-rate and drop-rate of the videosink as overlay or text on stdout",
                "hierarchy": [
                    "GstFPSDisplaySink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Sink/Video",
                "long-name": "Measure and show framerate on videosink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "fps-update-interval": {
                        "blurb": "Time between consecutive frames per second measures and update  (in ms). Should be set on NULL state",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "500",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "frames-dropped": {
                        "blurb": "Number of frames dropped by the sink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "frames-rendered": {
                        "blurb": "Number of frames rendered",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "last-message": {
                        "blurb": "The message describing current status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "max-fps": {
                        "blurb": "Maximum fps rate measured. Reset when going from NULL to READY.-1 means no measurement has yet been done",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "1.79769e+308",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": false
                    },
                    "min-fps": {
                        "blurb": "Minimum fps rate measured. Reset when going from NULL to READY.-1 means no measurement has yet been done",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "1.79769e+308",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": false
                    },
                    "signal-fps-measurements": {
                        "blurb": "If the fps-measurements signal should be emitted.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "silent": {
                        "blurb": "Don't produce last_message events",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sync": {
                        "blurb": "Sync on the clock (if the internally used sink doesn't have this property it will be ignored",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "text-overlay": {
                        "blurb": "Whether to use text-overlay",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "video-sink": {
                        "blurb": "Video sink to use (Must only be called on NULL state)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "fps-measurements": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gdouble"
                            },
                            {
                                "name": "arg1",
                                "type": "gdouble"
                            },
                            {
                                "name": "arg2",
                                "type": "gdouble"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "testsrcbin": {
                "author": "Erik Walthinsen <omega@cse.ogi.edu>,Wim Taymans <wim.taymans@gmail.com>",
                "description": "Simple container object",
                "hierarchy": [
                    "GstTestSrcBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Generic/Bin",
                "long-name": "Generic bin",
                "pad-templates": {
                    "audio_src_%%u": {
                        "caps": "audio/x-raw(ANY):\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "video_src_%%u": {
                        "caps": "video/x-raw(ANY):\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "stream-types": {
                        "blurb": "String describing the stream types to expose, eg. \"video+audio\".",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {}
            },
            "watchdog": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Watches for pauses in stream buffers",
                "hierarchy": [
                    "GstWatchdog",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Generic",
                "long-name": "Watchdog",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "timeout": {
                        "blurb": "Timeout (in ms) after which an element error is sent to the bus if no buffers are received. 0 means disabled.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstdebugutilsbad",
        "license": "LGPL",
        "other-types": {
            "GstChecksumSinkHash": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "MD5",
                        "name": "md5",
                        "value": "0"
                    },
                    {
                        "desc": "SHA-1",
                        "name": "sha1",
                        "value": "1"
                    },
                    {
                        "desc": "SHA-256",
                        "name": "sha256",
                        "value": "2"
                    },
                    {
                        "desc": "SHA-512",
                        "name": "sha512",
                        "value": "3"
                    }
                ]
            },
            "GstClockSelectClockId": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Default (elected from elements) pipeline clock",
                        "name": "default",
                        "value": "0"
                    },
                    {
                        "desc": "System monotonic clock",
                        "name": "monotonic",
                        "value": "1"
                    },
                    {
                        "desc": "System realtime clock",
                        "name": "realtime",
                        "value": "2"
                    },
                    {
                        "desc": "PTP clock",
                        "name": "ptp",
                        "value": "3"
                    },
                    {
                        "desc": "System TAI clock",
                        "name": "tai",
                        "value": "4"
                    }
                ]
            },
            "GstCompareMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Memory",
                        "name": "mem",
                        "value": "0"
                    },
                    {
                        "desc": "Maximum metric",
                        "name": "max",
                        "value": "1"
                    },
                    {
                        "desc": "SSIM (raw video)",
                        "name": "ssim",
                        "value": "2"
                    }
                ]
            },
            "GstFakeSinkStateError": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "No state change errors",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "Fail state change from NULL to READY",
                        "name": "null-to-ready",
                        "value": "1"
                    },
                    {
                        "desc": "Fail state change from READY to PAUSED",
                        "name": "ready-to-paused",
                        "value": "2"
                    },
                    {
                        "desc": "Fail state change from PAUSED to PLAYING",
                        "name": "paused-to-playing",
                        "value": "3"
                    },
                    {
                        "desc": "Fail state change from PLAYING to PAUSED",
                        "name": "playing-to-paused",
                        "value": "4"
                    },
                    {
                        "desc": "Fail state change from PAUSED to READY",
                        "name": "paused-to-ready",
                        "value": "5"
                    },
                    {
                        "desc": "Fail state change from READY to NULL",
                        "name": "ready-to-null",
                        "value": "6"
                    }
                ]
            },
            "GstFakeVideoSinkAllocationMetaFlags": {
                "kind": "flags",
                "values": [
                    {
                        "desc": "Expose the crop meta as supported",
                        "name": "crop",
                        "value": "0x00000001"
                    },
                    {
                        "desc": "Expose the overlay composition meta as supported",
                        "name": "overlay-composition",
                        "value": "0x00000002"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "decklink": {
        "description": "Blackmagic Decklink plugin",
        "elements": {
            "decklinkaudiosink": {
                "author": "David Schleef <ds@entropywave.com>, Sebastian Dröge <sebastian@centricular.com>",
                "description": "Decklink Sink",
                "hierarchy": [
                    "GstDecklinkAudioSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Audio/Sink/Hardware",
                "long-name": "Decklink Audio Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { S16LE, S32LE }\n       channels: { (int)2, (int)8, (int)16 }\n           rate: 48000\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alignment-threshold": {
                        "blurb": "Timestamp alignment threshold in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "buffer-time": {
                        "blurb": "Size of audio buffer in microseconds, this is the minimum latency that the sink reports",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "device-number": {
                        "blurb": "Output device instance to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "discont-wait": {
                        "blurb": "Window of time in nanoseconds to wait before creating a discontinuity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "hw-serial-number": {
                        "blurb": "The serial number (hardware ID) of the Decklink card",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    }
                },
                "rank": "none"
            },
            "decklinkaudiosrc": {
                "author": "David Schleef <ds@entropywave.com>, Sebastian Dröge <sebastian@centricular.com>",
                "description": "Decklink Source",
                "hierarchy": [
                    "GstDecklinkAudioSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Audio/Source/Hardware",
                "long-name": "Decklink Audio Source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S16LE, S32LE }\n       channels: 2\n           rate: 48000\n         layout: interleaved\naudio/x-raw:\n         format: { S16LE, S32LE }\n       channels: { (int)8, (int)16 }\n   channel-mask: 0x0000000000000000\n           rate: 48000\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alignment-threshold": {
                        "blurb": "Timestamp alignment threshold in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "buffer-size": {
                        "blurb": "Size of internal buffer in number of video frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "channels": {
                        "blurb": "Audio channels",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkAudioChannels",
                        "writable": true
                    },
                    "connection": {
                        "blurb": "Audio input connection to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkAudioConnection",
                        "writable": true
                    },
                    "device-number": {
                        "blurb": "Output device instance to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "discont-wait": {
                        "blurb": "Window of time in nanoseconds to wait before creating a discontinuity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "hw-serial-number": {
                        "blurb": "The serial number (hardware ID) of the Decklink card",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    }
                },
                "rank": "none"
            },
            "decklinkvideosink": {
                "author": "David Schleef <ds@entropywave.com>, Sebastian Dröge <sebastian@centricular.com>",
                "description": "Decklink Sink",
                "hierarchy": [
                    "GstDecklinkVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Sink/Hardware",
                "long-name": "Decklink Video Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: [ 0/1, 2147483647/1 ]\n         format: BGRA\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "afd-bar-line": {
                        "blurb": "Line number to use for inserting AFD/Bar data (0 = disabled)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "cc-line": {
                        "blurb": "Line number to use for inserting closed captions (0 = disabled)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "22",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "device-number": {
                        "blurb": "Output device instance to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "duplex-mode": {
                        "blurb": "Certain DeckLink devices such as the DeckLink Quad 2 and the DeckLink Duo 2 support configuration of the duplex mode of individual sub-devices.A sub-device configured as full-duplex will use two connectors, which allows simultaneous capture and playback, internal keying, and fill & key scenarios.A half-duplex sub-device will use a single connector as an individual capture or playback channel.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "half (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkDuplexMode",
                        "writable": true
                    },
                    "hw-serial-number": {
                        "blurb": "The serial number (hardware ID) of the Decklink card",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "keyer-level": {
                        "blurb": "Keyer level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "255",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "keyer-mode": {
                        "blurb": "Keyer mode to be enabled",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkKeyerMode",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Video Mode to use for playback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ntsc (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkModes",
                        "writable": true
                    },
                    "timecode-format": {
                        "blurb": "Timecode format type to use for playback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rp188any (3)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkTimecodeFormat",
                        "writable": true
                    },
                    "video-format": {
                        "blurb": "Video format type to use for playback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8bit-yuv (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkVideoFormat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "decklinkvideosrc": {
                "author": "David Schleef <ds@entropywave.com>, Sebastian Dröge <sebastian@centricular.com>",
                "description": "Decklink Source",
                "hierarchy": [
                    "GstDecklinkVideoSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Source/Hardware",
                "long-name": "Decklink Video Source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 10/11\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 12/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: bottom-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: interleaved\n      framerate: 24000/1001\n    field-order: bottom-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 486\npixel-aspect-ratio: 40/33\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: UYVY\n    colorimetry: bt601\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: v210\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: ARGB\nvideo/x-raw:\n          width: 720\n         height: 576\npixel-aspect-ratio: 16/11\n interlace-mode: progressive\n      framerate: 25/1\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 25/1\n    field-order: top-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: top-field-first\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: top-field-first\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: top-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30000/1001\n    field-order: top-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30/1\n    field-order: top-field-first\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30/1\n    field-order: top-field-first\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30/1\n    field-order: top-field-first\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: interleaved\n      framerate: 30/1\n    field-order: top-field-first\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: v210\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: ARGB\nvideo/x-raw:\n          width: 1920\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: BGRA\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: v210\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: ARGB\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: BGRA\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: v210\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: v210\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: ARGB\nvideo/x-raw:\n          width: 1280\n         height: 720\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1556\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 2400/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 2400/1001\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 2400/1001\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 2400/1001\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: UYVY\n    colorimetry: bt709\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: v210\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: ARGB\nvideo/x-raw:\n          width: 2048\n         height: 1080\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 24/1\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 25/1\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 30/1\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 50/1\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60000/1001\n         format: BGRA\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: UYVY\n    colorimetry: bt2020\n    chroma-site: mpeg2\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: v210\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: ARGB\nvideo/x-raw:\n          width: 3840\n         height: 2160\npixel-aspect-ratio: 1/1\n interlace-mode: progressive\n      framerate: 60/1\n         format: BGRA\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "buffer-size": {
                        "blurb": "Size of internal buffer in number of video frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "connection": {
                        "blurb": "Video input connection to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkConnection",
                        "writable": true
                    },
                    "device-number": {
                        "blurb": "Output device instance to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "drop-no-signal-frames": {
                        "blurb": "Drop frames that are marked as having no input signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "duplex-mode": {
                        "blurb": "Certain DeckLink devices such as the DeckLink Quad 2 and the DeckLink Duo 2 support configuration of the duplex mode of individual sub-devices.A sub-device configured as full-duplex will use two connectors, which allows simultaneous capture and playback, internal keying, and fill & key scenarios.A half-duplex sub-device will use a single connector as an individual capture or playback channel.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "half (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkDuplexMode",
                        "writable": true
                    },
                    "hw-serial-number": {
                        "blurb": "The serial number (hardware ID) of the Decklink card",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Video Mode to use for playback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkModes",
                        "writable": true
                    },
                    "output-afd-bar": {
                        "blurb": "Extract and output AFD/Bar as GstMeta (if present)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "output-cc": {
                        "blurb": "Extract and output CC as GstMeta (if present)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "output-stream-time": {
                        "blurb": "Output stream time directly instead of translating to pipeline clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "signal": {
                        "blurb": "True if there is a valid input signal available",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "skip-first-time": {
                        "blurb": "Skip that much time of initial frames after starting",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "timecode-format": {
                        "blurb": "Timecode format type to use for input",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rp188any (3)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkTimecodeFormat",
                        "writable": true
                    },
                    "video-format": {
                        "blurb": "Video format type to use for input (Only use auto for mode=auto)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDecklinkVideoFormat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstdecklink",
        "license": "LGPL",
        "other-types": {
            "GstDecklinkAudioChannels": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "2 Channels",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "8 Channels",
                        "name": "8",
                        "value": "8"
                    },
                    {
                        "desc": "16 Channels",
                        "name": "16",
                        "value": "16"
                    },
                    {
                        "desc": "Maximum channels supported",
                        "name": "max",
                        "value": "0"
                    }
                ]
            },
            "GstDecklinkAudioConnection": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Automatic",
                        "name": "auto",
                        "value": "0"
                    },
                    {
                        "desc": "SDI/HDMI embedded audio",
                        "name": "embedded",
                        "value": "1"
                    },
                    {
                        "desc": "AES/EBU input",
                        "name": "aes",
                        "value": "2"
                    },
                    {
                        "desc": "Analog input",
                        "name": "analog",
                        "value": "3"
                    },
                    {
                        "desc": "Analog input (XLR)",
                        "name": "analog-xlr",
                        "value": "4"
                    },
                    {
                        "desc": "Analog input (RCA)",
                        "name": "analog-rca",
                        "value": "5"
                    }
                ]
            },
            "GstDecklinkConnection": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Auto",
                        "name": "auto",
                        "value": "0"
                    },
                    {
                        "desc": "SDI",
                        "name": "sdi",
                        "value": "1"
                    },
                    {
                        "desc": "HDMI",
                        "name": "hdmi",
                        "value": "2"
                    },
                    {
                        "desc": "Optical SDI",
                        "name": "optical-sdi",
                        "value": "3"
                    },
                    {
                        "desc": "Component",
                        "name": "component",
                        "value": "4"
                    },
                    {
                        "desc": "Composite",
                        "name": "composite",
                        "value": "5"
                    },
                    {
                        "desc": "S-Video",
                        "name": "svideo",
                        "value": "6"
                    }
                ]
            },
            "GstDecklinkDuplexMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Half-Duplex",
                        "name": "half",
                        "value": "0"
                    },
                    {
                        "desc": "Full-Duplex",
                        "name": "full",
                        "value": "1"
                    }
                ]
            },
            "GstDecklinkKeyerMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "Internal",
                        "name": "internal",
                        "value": "1"
                    },
                    {
                        "desc": "External",
                        "name": "external",
                        "value": "2"
                    }
                ]
            },
            "GstDecklinkModes": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Automatic detection",
                        "name": "auto",
                        "value": "0"
                    },
                    {
                        "desc": "NTSC SD 60i",
                        "name": "ntsc",
                        "value": "1"
                    },
                    {
                        "desc": "NTSC SD 60i (24 fps)",
                        "name": "ntsc2398",
                        "value": "2"
                    },
                    {
                        "desc": "PAL SD 50i",
                        "name": "pal",
                        "value": "3"
                    },
                    {
                        "desc": "NTSC SD 60p",
                        "name": "ntsc-p",
                        "value": "4"
                    },
                    {
                        "desc": "PAL SD 50p",
                        "name": "pal-p",
                        "value": "5"
                    },
                    {
                        "desc": "NTSC SD 60i Widescreen",
                        "name": "ntsc-widescreen",
                        "value": "6"
                    },
                    {
                        "desc": "NTSC SD 60i Widescreen (24 fps)",
                        "name": "ntsc2398-widescreen",
                        "value": "7"
                    },
                    {
                        "desc": "PAL SD 50i Widescreen",
                        "name": "pal-widescreen",
                        "value": "8"
                    },
                    {
                        "desc": "NTSC SD 60p Widescreen",
                        "name": "ntsc-p-widescreen",
                        "value": "9"
                    },
                    {
                        "desc": "PAL SD 50p Widescreen",
                        "name": "pal-p-widescreen",
                        "value": "10"
                    },
                    {
                        "desc": "HD1080 23.98p",
                        "name": "1080p2398",
                        "value": "11"
                    },
                    {
                        "desc": "HD1080 24p",
                        "name": "1080p24",
                        "value": "12"
                    },
                    {
                        "desc": "HD1080 25p",
                        "name": "1080p25",
                        "value": "13"
                    },
                    {
                        "desc": "HD1080 29.97p",
                        "name": "1080p2997",
                        "value": "14"
                    },
                    {
                        "desc": "HD1080 30p",
                        "name": "1080p30",
                        "value": "15"
                    },
                    {
                        "desc": "HD1080 50i",
                        "name": "1080i50",
                        "value": "16"
                    },
                    {
                        "desc": "HD1080 59.94i",
                        "name": "1080i5994",
                        "value": "17"
                    },
                    {
                        "desc": "HD1080 60i",
                        "name": "1080i60",
                        "value": "18"
                    },
                    {
                        "desc": "HD1080 50p",
                        "name": "1080p50",
                        "value": "19"
                    },
                    {
                        "desc": "HD1080 59.94p",
                        "name": "1080p5994",
                        "value": "20"
                    },
                    {
                        "desc": "HD1080 60p",
                        "name": "1080p60",
                        "value": "21"
                    },
                    {
                        "desc": "HD720 50p",
                        "name": "720p50",
                        "value": "22"
                    },
                    {
                        "desc": "HD720 59.94p",
                        "name": "720p5994",
                        "value": "23"
                    },
                    {
                        "desc": "HD720 60p",
                        "name": "720p60",
                        "value": "24"
                    },
                    {
                        "desc": "2k 23.98p",
                        "name": "1556p2398",
                        "value": "25"
                    },
                    {
                        "desc": "2k 24p",
                        "name": "1556p24",
                        "value": "26"
                    },
                    {
                        "desc": "2k 25p",
                        "name": "1556p25",
                        "value": "27"
                    },
                    {
                        "desc": "2k dci 23.98p",
                        "name": "2kdcip2398",
                        "value": "28"
                    },
                    {
                        "desc": "2k dci 24p",
                        "name": "2kdcip24",
                        "value": "29"
                    },
                    {
                        "desc": "2k dci 25p",
                        "name": "2kdcip25",
                        "value": "30"
                    },
                    {
                        "desc": "2k dci 29.97p",
                        "name": "2kdcip2997",
                        "value": "31"
                    },
                    {
                        "desc": "2k dci 30p",
                        "name": "2kdcip30",
                        "value": "32"
                    },
                    {
                        "desc": "2k dci 50p",
                        "name": "2kdcip50",
                        "value": "33"
                    },
                    {
                        "desc": "2k dci 59.94p",
                        "name": "2kdcip5994",
                        "value": "34"
                    },
                    {
                        "desc": "2k dci 60p",
                        "name": "2kdcip60",
                        "value": "35"
                    },
                    {
                        "desc": "4k 23.98p",
                        "name": "2160p2398",
                        "value": "36"
                    },
                    {
                        "desc": "4k 24p",
                        "name": "2160p24",
                        "value": "37"
                    },
                    {
                        "desc": "4k 25p",
                        "name": "2160p25",
                        "value": "38"
                    },
                    {
                        "desc": "4k 29.97p",
                        "name": "2160p2997",
                        "value": "39"
                    },
                    {
                        "desc": "4k 30p",
                        "name": "2160p30",
                        "value": "40"
                    },
                    {
                        "desc": "4k 50p",
                        "name": "2160p50",
                        "value": "41"
                    },
                    {
                        "desc": "4k 59.94p",
                        "name": "2160p5994",
                        "value": "42"
                    },
                    {
                        "desc": "4k 60p",
                        "name": "2160p60",
                        "value": "43"
                    }
                ]
            },
            "GstDecklinkTimecodeFormat": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "bmdTimecodeRP188VITC1",
                        "name": "rp188vitc1",
                        "value": "0"
                    },
                    {
                        "desc": "bmdTimecodeRP188VITC2",
                        "name": "rp188vitc2",
                        "value": "1"
                    },
                    {
                        "desc": "bmdTimecodeRP188LTC",
                        "name": "rp188ltc",
                        "value": "2"
                    },
                    {
                        "desc": "bmdTimecodeRP188Any",
                        "name": "rp188any",
                        "value": "3"
                    },
                    {
                        "desc": "bmdTimecodeVITC",
                        "name": "vitc",
                        "value": "4"
                    },
                    {
                        "desc": "bmdTimecodeVITCField2",
                        "name": "vitcfield2",
                        "value": "5"
                    },
                    {
                        "desc": "bmdTimecodeSerial",
                        "name": "serial",
                        "value": "6"
                    }
                ]
            },
            "GstDecklinkVideoFormat": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Auto",
                        "name": "auto",
                        "value": "0"
                    },
                    {
                        "desc": "bmdFormat8BitYUV",
                        "name": "8bit-yuv",
                        "value": "1"
                    },
                    {
                        "desc": "bmdFormat10BitYUV",
                        "name": "10bit-yuv",
                        "value": "2"
                    },
                    {
                        "desc": "bmdFormat8BitARGB",
                        "name": "8bit-argb",
                        "value": "3"
                    },
                    {
                        "desc": "bmdFormat8BitBGRA",
                        "name": "8bit-bgra",
                        "value": "4"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "directfb": {
        "description": "DirectFB video output plugin",
        "elements": {
            "dfbvideosink": {
                "author": "Julien Moutte <julien@moutte.net>",
                "description": "A DirectFB based videosink",
                "hierarchy": [
                    "GstDfbVideoSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstNavigation",
                    "GstColorBalance"
                ],
                "klass": "Sink/Video",
                "long-name": "DirectFB video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "async": {
                        "blurb": "Go asynchronously to PAUSED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "blocksize": {
                        "blurb": "Size in bytes to pull per buffer (0 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "brightness": {
                        "blurb": "The brightness of the video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "contrast": {
                        "blurb": "The contrast of the video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "enable-last-sample": {
                        "blurb": "Enable the last-sample property",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hue": {
                        "blurb": "The hue of the video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "last-sample": {
                        "blurb": "The last sample received in the sink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSample",
                        "writable": false
                    },
                    "layer-mode": {
                        "blurb": "The cooperative level handling the access permission (set this to 'administrative' when the cursor is required)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "exclusive (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDfbVideoSinkLayerMode",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bits per second to render (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "max-lateness": {
                        "blurb": "Maximum number of nanoseconds that a buffer can be late before it is dropped (-1 unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5000000",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "pixel-aspect-ratio": {
                        "blurb": "The pixel aspect ratio of the device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "processing-deadline": {
                        "blurb": "Maximum processing time for a buffer in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "15000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "qos": {
                        "blurb": "Generate Quality-of-Service events upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "render-delay": {
                        "blurb": "Additional render delay of the sink in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "saturation": {
                        "blurb": "The saturation of the video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "show-preroll-frame": {
                        "blurb": "Whether to render video frames during preroll",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Sink Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-gst-base-sink-stats, average-rate=(double)0, dropped=(guint64)0, rendered=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "surface": {
                        "blurb": "The target surface for video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": false,
                        "type": "gpointer",
                        "writable": true
                    },
                    "sync": {
                        "blurb": "Sync on the clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "throttle-time": {
                        "blurb": "The time to keep between rendered buffers (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Timestamp offset in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "vsync": {
                        "blurb": "Wait for next vertical sync to draw frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstdirectfb",
        "license": "LGPL",
        "other-types": {
            "GstDfbVideoSinkLayerMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "NONE",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "DLSCL_EXCLUSIVE",
                        "name": "exclusive",
                        "value": "1"
                    },
                    {
                        "desc": "DLSCL_ADMINISTRATIVE",
                        "name": "administrative",
                        "value": "2"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "directsoundsrc": {
        "description": "Direct Sound Source plugin library",
        "elements": {
            "directsoundsrc": {
                "author": "Joni Valtanen <joni.valtanen@movial.fi>",
                "description": "Capture from a soundcard via DirectSound",
                "hierarchy": [
                    "GstDirectSoundSrc",
                    "GstAudioSrc",
                    "GstAudioBaseSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstStreamVolume"
                ],
                "klass": "Source/Audio",
                "long-name": "DirectSound audio source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S16LE, S8 }\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "DirectSound playback device as a GUID string (volume and mute will not work!)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "Human-readable name of the sound device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Mute state of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "volume": {
                        "blurb": "Volume of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstdirectsoundsrc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dtls": {
        "description": "DTLS decoder and encoder plugins",
        "elements": {
            "dtlsdec": {
                "author": "Patrik Oldsberg patrik.oldsberg@ericsson.com",
                "description": "Decodes DTLS packets",
                "hierarchy": [
                    "GstDtlsDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Decoder/Network/DTLS",
                "long-name": "DTLS Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-dtls:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "request"
                    }
                },
                "properties": {
                    "connection-id": {
                        "blurb": "Every encoder/decoder pair should have the same, unique, connection-id",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "connection-state": {
                        "blurb": "Current connection state",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "closed (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDtlsConnectionState",
                        "writable": false
                    },
                    "decoder-key": {
                        "blurb": "SRTP key that should be used by the decoder",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": false
                    },
                    "peer-pem": {
                        "blurb": "The X509 certificate received in the DTLS handshake, in PEM format",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "pem": {
                        "blurb": "A string containing a X509 certificate and RSA private key in PEM format",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "srtp-auth": {
                        "blurb": "The SRTP authentication selected in the DTLS handshake. The value will be set to an GstDtlsSrtpAuth.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "srtp-cipher": {
                        "blurb": "The SRTP cipher selected in the DTLS handshake. The value will be set to an GstDtlsSrtpCipher.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "none",
                "signals": {
                    "on-key-received": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "dtlsenc": {
                "author": "Patrik Oldsberg patrik.oldsberg@ericsson.com",
                "description": "Encodes packets with DTLS",
                "hierarchy": [
                    "GstDtlsEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Encoder/Network/DTLS",
                "long-name": "DTLS Encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "application/x-dtls:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "connection-id": {
                        "blurb": "Every encoder/decoder pair should have the same, unique, connection-id",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "connection-state": {
                        "blurb": "Current connection state",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "closed (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDtlsConnectionState",
                        "writable": false
                    },
                    "encoder-key": {
                        "blurb": "Master key that should be used by the SRTP encoder",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstBuffer",
                        "writable": false
                    },
                    "is-client": {
                        "blurb": "Set to true if the decoder should act as client and initiate the handshake",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "srtp-auth": {
                        "blurb": "The SRTP authentication selected in the DTLS handshake. The value will be set to an GstDtlsSrtpAuth.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "srtp-cipher": {
                        "blurb": "The SRTP cipher selected in the DTLS handshake. The value will be set to an GstDtlsSrtpCipher.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "none",
                "signals": {
                    "on-key-received": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "dtlssrtpdec": {
                "author": "Patrik Oldsberg patrik.oldsberg@ericsson.com",
                "description": "Decodes SRTP packets with a key received from DTLS",
                "hierarchy": [
                    "GstDtlsSrtpDec",
                    "GstDtlsSrtpBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Decoder/Network/DTLS/SRTP",
                "long-name": "DTLS-SRTP Decoder",
                "pad-templates": {
                    "data_src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "request"
                    },
                    "rtcp_src": {
                        "caps": "application/x-rtcp:\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "rtp_src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "connection-state": {
                        "blurb": "Current connection state",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "closed (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDtlsConnectionState",
                        "writable": false
                    },
                    "peer-pem": {
                        "blurb": "The X509 certificate received in the DTLS handshake, in PEM format",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "pem": {
                        "blurb": "A string containing a X509 certificate and RSA private key in PEM format",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "dtlssrtpdemux": {
                "author": "Patrik Oldsberg patrik.oldsberg@ericsson.com",
                "description": "Demultiplexes DTLS and SRTP packets",
                "hierarchy": [
                    "GstDtlsSrtpDemux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "DTLS/SRTP/Demux",
                "long-name": "DTLS SRTP Demultiplexer",
                "pad-templates": {
                    "dtls_src": {
                        "caps": "application/x-dtls:\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "rtp_src": {
                        "caps": "application/x-rtp:\napplication/x-rtcp:\napplication/x-srtp:\napplication/x-srtcp:\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "dtlssrtpenc": {
                "author": "Patrik Oldsberg patrik.oldsberg@ericsson.com",
                "description": "Encodes SRTP packets with a key received from DTLS",
                "hierarchy": [
                    "GstDtlsSrtpEnc",
                    "GstDtlsSrtpBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Encoder/Network/DTLS/SRTP",
                "long-name": "DTLS-SRTP Encoder",
                "pad-templates": {
                    "data_sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "rtcp_sink_%%d": {
                        "caps": "application/x-rtp:\napplication/x-rtcp:\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "rtp_sink_%%d": {
                        "caps": "application/x-rtp:\napplication/x-rtcp:\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "connection-state": {
                        "blurb": "Current connection state",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "closed (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDtlsConnectionState",
                        "writable": false
                    },
                    "is-client": {
                        "blurb": "Set to true if the decoder should act as client and initiate the handshake",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rtp-sync": {
                        "blurb": "Synchronize RTP to the pipeline clock before merging with RTCP",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "on-key-set": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstdtls",
        "license": "BSD",
        "other-types": {
            "GstDtlsConnectionState": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "New connection",
                        "name": "new",
                        "value": "0"
                    },
                    {
                        "desc": "Closed connection on either side",
                        "name": "closed",
                        "value": "1"
                    },
                    {
                        "desc": "Failed connection",
                        "name": "failed",
                        "value": "2"
                    },
                    {
                        "desc": "Connecting",
                        "name": "connecting",
                        "value": "3"
                    },
                    {
                        "desc": "Successfully connected",
                        "name": "connected",
                        "value": "4"
                    }
                ]
            },
            "GstDtlsSrtpBin": {
                "hierarchy": [
                    "GstDtlsSrtpBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "kind": "object",
                "properties": {
                    "connection-id": {
                        "blurb": "Every encoder/decoder pair should have the same, unique, connection-id",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "key": {
                        "blurb": "SRTP master key, if this property is set, DTLS will be disabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstBuffer",
                        "writable": true
                    },
                    "srtcp-auth": {
                        "blurb": "SRTCP auth name, should be 'null', 'hmac-sha1-32' or 'hmac-sha1-80', if this property is set, DTLS will be disabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "srtcp-cipher": {
                        "blurb": "SRTCP cipher name, should be 'null' or 'aes-128-icm', if this property is set, DTLS will be disabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "srtp-auth": {
                        "blurb": "SRTP auth name, should be 'null', 'hmac-sha1-32' or 'hmac-sha1-80', if this property is set, DTLS will be disabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "srtp-cipher": {
                        "blurb": "SRTP cipher name, should be 'null' or 'aes-128-icm', if this property is set, DTLS will be disabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                }
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dtsdec": {
        "description": "Decodes DTS audio streams",
        "elements": {
            "dtsdec": {
                "author": "Jan Schmidt <thaytan@noraisin.net>, Ronald Bultje <rbultje@ronald.bitfreak.net>",
                "description": "Decodes DTS audio streams",
                "hierarchy": [
                    "GstDtsDec",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "DTS audio decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-dts:\naudio/x-private1-dts:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n         layout: interleaved\n           rate: [ 4000, 96000 ]\n       channels: [ 1, 6 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "drc": {
                        "blurb": "Use Dynamic Range Compression",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstdtsdec",
        "license": "GPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dvb": {
        "description": "DVB elements",
        "elements": {
            "dvbbasebin": {
                "author": "Alessandro Decina <alessandro.d@gmail.com>\nReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>",
                "description": "Access descramble and split DVB streams",
                "hierarchy": [
                    "DvbBaseBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Source/Bin/Video",
                "long-name": "DVB bin",
                "pad-templates": {
                    "program_%%u": {
                        "caps": "video/mpegts:\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "video/mpegts:\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "The DVB adapter device number (eg. 0 for adapter0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "16",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "bandwidth": {
                        "blurb": "(DVB-T) Bandwidth. Deprecated",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "AUTO (3)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcBandwidth",
                        "writable": true
                    },
                    "bandwidth-hz": {
                        "blurb": "Channel bandwidth in Hz",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "code-rate-hp": {
                        "blurb": "(DVB-T, DVB-S/S2 and DVB-C) High priority code rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "code-rate-lp": {
                        "blurb": "(DVB-T) Low priority code rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1/2 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "delsys": {
                        "blurb": "Delivery System",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "undefined (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDvbSrcDelsys",
                        "writable": true
                    },
                    "diseqc-source": {
                        "blurb": "(DVB-S/S2) Selected DiSEqC source. Only needed if you have a DiSEqC switch. Otherwise leave at -1 (disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "7",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "frequency": {
                        "blurb": "Center frequency to tune into. Measured in kHz for the satellite distribution standards and Hz for all the rest",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "frontend": {
                        "blurb": "The frontend device number (eg. 0 for frontend0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "16",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "guard": {
                        "blurb": "(DVB-T) Guard Interval",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcGuard",
                        "writable": true
                    },
                    "hierarchy": {
                        "blurb": "(DVB-T) Hierarchy information",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcHierarchy",
                        "writable": true
                    },
                    "interleaving": {
                        "blurb": "(DTMB) Interleaving type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcInterleaving",
                        "writable": true
                    },
                    "inversion": {
                        "blurb": "(DVB-T and DVB-C) Inversion information",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "on (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcInversion",
                        "writable": true
                    },
                    "isdbt-layer-enabled": {
                        "blurb": "(ISDB-T) Layer Enabled (7 = All layers)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "7",
                        "max": "7",
                        "min": "1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "isdbt-layera-fec": {
                        "blurb": "(ISDB-T) layer A Forward Error Correction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "isdbt-layera-modulation": {
                        "blurb": "(ISDB-T) Layer A modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (6)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "isdbt-layera-segment-count": {
                        "blurb": "(ISDB-T) Layer A segment count (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "13",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layera-time-interleaving": {
                        "blurb": "(ISDB-T) Layer A time interleaving (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "8",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerb-fec": {
                        "blurb": "(ISDB-T) layer B Forward Error Correction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "isdbt-layerb-modulation": {
                        "blurb": "(ISDB-T) Layer B modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (6)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "isdbt-layerb-segment-count": {
                        "blurb": "(ISDB-T) Layer B segment count (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "13",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerb-time-interleaving": {
                        "blurb": "(ISDB-T) Layer B time interleaving (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "8",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerc-fec": {
                        "blurb": "(ISDB-T) layer C Forward Error Correction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "isdbt-layerc-modulation": {
                        "blurb": "(ISDB-T) Layer C modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (6)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "isdbt-layerc-segment-count": {
                        "blurb": "(ISDB-T) Layer C segment count (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "13",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerc-time-interleaving": {
                        "blurb": "(ISDB-T) Layer C time interleaving (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "8",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-partial-reception": {
                        "blurb": "(ISDB-T) Partial Reception (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "1",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-sb-segment-count": {
                        "blurb": "(ISDB-T) SB segment count",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "13",
                        "min": "1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "isdbt-sb-segment-idx": {
                        "blurb": "(ISDB-T) SB segment IDX",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "12",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-sb-subchannel-id": {
                        "blurb": "(ISDB-T) SB Subchannel ID (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "41",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-sound-broadcasting": {
                        "blurb": "(ISDB-T) Sound Broadcasting",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "lnb-lof1": {
                        "blurb": "LNB's Local oscillator frequency used for low band reception (kHz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9750000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "lnb-lof2": {
                        "blurb": "LNB's Local oscillator frequency used for high band reception (kHz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10600000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "lnb-slof": {
                        "blurb": "LNB's Upper bound for low band reception (kHz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "11700000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "modulation": {
                        "blurb": "(DVB-T/T2/C/S2, TURBO and ATSC) Modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "qam-16 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "pilot": {
                        "blurb": "Pilot (DVB-S2)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (2)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcPilot",
                        "writable": true
                    },
                    "polarity": {
                        "blurb": "(DVB-S/S2) Polarity [vhHV] (eg. V for Vertical)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "H",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "program-numbers": {
                        "blurb": "Colon separated list of programs",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "rolloff": {
                        "blurb": "Rolloff (DVB-S2)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (3)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcRolloff",
                        "writable": true
                    },
                    "stats-reporting-interval": {
                        "blurb": "The number of reads before reporting frontend stats",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "stream-id": {
                        "blurb": "(DVB-T2 and DVB-S2 max 255, ISDB max 65535) Stream ID (-1 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "symbol-rate": {
                        "blurb": "(DVB-S/S2, DVB-C) Symbol rate in kBd (kilo bauds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "trans-mode": {
                        "blurb": "(DVB-T) Transmission mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8k (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcTransmission_Mode",
                        "writable": true
                    },
                    "tuning-timeout": {
                        "blurb": "Microseconds to wait before giving up tuning/locking on a signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "tune": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "tuning-done": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "tuning-fail": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "tuning-start": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "dvbsrc": {
                "author": "P2P-VCR, C-Lab, University of Paderborn, Zaheer Abbas Merali <zaheerabbas at merali dot org>\nReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>",
                "description": "Digital Video Broadcast Source",
                "hierarchy": [
                    "GstDvbSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "DVB Source",
                "pad-templates": {
                    "src": {
                        "caps": "video/mpegts:\n    mpegversion: 2\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adapter": {
                        "blurb": "The DVB adapter device number (eg. 0 for adapter0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "16",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "bandwidth": {
                        "blurb": "(DVB-T) Bandwidth. Deprecated",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "AUTO (3)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcBandwidth",
                        "writable": true
                    },
                    "bandwidth-hz": {
                        "blurb": "Channel bandwidth in Hz",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "code-rate-hp": {
                        "blurb": "(DVB-T, DVB-S/S2 and DVB-C) High priority code rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "code-rate-lp": {
                        "blurb": "(DVB-T) Low priority code rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1/2 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "delsys": {
                        "blurb": "Delivery System",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "undefined (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDvbSrcDelsys",
                        "writable": true
                    },
                    "diseqc-source": {
                        "blurb": "(DVB-S/S2) Selected DiSEqC source. Only needed if you have a DiSEqC switch. Otherwise leave at -1 (disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "7",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "dvb-buffer-size": {
                        "blurb": "The kernel buffer size used by the DVB api",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1925120",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "frequency": {
                        "blurb": "Center frequency to tune into. Measured in kHz for the satellite distribution standards and Hz for all the rest",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "frontend": {
                        "blurb": "The frontend device number (eg. 0 for frontend0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "16",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "guard": {
                        "blurb": "(DVB-T) Guard Interval",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcGuard",
                        "writable": true
                    },
                    "hierarchy": {
                        "blurb": "(DVB-T) Hierarchy information",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcHierarchy",
                        "writable": true
                    },
                    "interleaving": {
                        "blurb": "(DTMB) Interleaving type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcInterleaving",
                        "writable": true
                    },
                    "inversion": {
                        "blurb": "(DVB-T and DVB-C) Inversion information",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "on (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcInversion",
                        "writable": true
                    },
                    "isdbt-layer-enabled": {
                        "blurb": "(ISDB-T) Layer Enabled (7 = All layers)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "7",
                        "max": "7",
                        "min": "1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "isdbt-layera-fec": {
                        "blurb": "(ISDB-T) layer A Forward Error Correction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "isdbt-layera-modulation": {
                        "blurb": "(ISDB-T) Layer A modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (6)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "isdbt-layera-segment-count": {
                        "blurb": "(ISDB-T) Layer A segment count (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "13",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layera-time-interleaving": {
                        "blurb": "(ISDB-T) Layer A time interleaving (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "8",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerb-fec": {
                        "blurb": "(ISDB-T) layer B Forward Error Correction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "isdbt-layerb-modulation": {
                        "blurb": "(ISDB-T) Layer B modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (6)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "isdbt-layerb-segment-count": {
                        "blurb": "(ISDB-T) Layer B segment count (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "13",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerb-time-interleaving": {
                        "blurb": "(ISDB-T) Layer B time interleaving (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "8",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerc-fec": {
                        "blurb": "(ISDB-T) layer C Forward Error Correction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (9)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcCode_Rate",
                        "writable": true
                    },
                    "isdbt-layerc-modulation": {
                        "blurb": "(ISDB-T) Layer C modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (6)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "isdbt-layerc-segment-count": {
                        "blurb": "(ISDB-T) Layer C segment count (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "13",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-layerc-time-interleaving": {
                        "blurb": "(ISDB-T) Layer C time interleaving (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "8",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-partial-reception": {
                        "blurb": "(ISDB-T) Partial Reception (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "1",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-sb-segment-count": {
                        "blurb": "(ISDB-T) SB segment count",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "13",
                        "min": "1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "isdbt-sb-segment-idx": {
                        "blurb": "(ISDB-T) SB segment IDX",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "12",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-sb-subchannel-id": {
                        "blurb": "(ISDB-T) SB Subchannel ID (-1 = AUTO)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "41",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "isdbt-sound-broadcasting": {
                        "blurb": "(ISDB-T) Sound Broadcasting",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "lnb-lof1": {
                        "blurb": "LNB's Local oscillator frequency used for low band reception (kHz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9750000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "lnb-lof2": {
                        "blurb": "LNB's Local oscillator frequency used for high band reception (kHz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10600000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "lnb-slof": {
                        "blurb": "LNB's Upper bound for low band reception (kHz)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "11700000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "modulation": {
                        "blurb": "(DVB-T/T2/C/S2, TURBO and ATSC) Modulation type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "qam-16 (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcModulation",
                        "writable": true
                    },
                    "pids": {
                        "blurb": "Colon-separated list of PIDs (eg. 110:120) to capture. ACT and CAT are automatically included but PMT should be added explicitly. Special value 8192 gets full MPEG-TS",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8192",
                        "mutable": "playing",
                        "readable": false,
                        "type": "gchararray",
                        "writable": true
                    },
                    "pilot": {
                        "blurb": "Pilot (DVB-S2)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (2)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcPilot",
                        "writable": true
                    },
                    "polarity": {
                        "blurb": "(DVB-S/S2) Polarity [vhHV] (eg. V for Vertical)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "H",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "rolloff": {
                        "blurb": "Rolloff (DVB-S2)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (3)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcRolloff",
                        "writable": true
                    },
                    "stats-reporting-interval": {
                        "blurb": "The number of reads before reporting frontend stats",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "stream-id": {
                        "blurb": "(DVB-T2 and DVB-S2 max 255, ISDB max 65535) Stream ID (-1 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "symbol-rate": {
                        "blurb": "(DVB-S/S2, DVB-C) Symbol rate in kBd (kilo bauds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Post a message after timeout microseconds (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "trans-mode": {
                        "blurb": "(DVB-T) Transmission mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8k (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstDvbSrcTransmission_Mode",
                        "writable": true
                    },
                    "tune": {
                        "blurb": "Atomically tune to channel. (For Apps)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": false,
                        "type": "gpointer",
                        "writable": true
                    },
                    "tuning-timeout": {
                        "blurb": "Microseconds to wait before giving up tuning/locking on a signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "tune": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "tuning-done": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "tuning-fail": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "tuning-start": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstdvb",
        "license": "LGPL",
        "other-types": {
            "GstDvbSrcBandwidth": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "0"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "1"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "2"
                    },
                    {
                        "desc": "AUTO",
                        "name": "AUTO",
                        "value": "3"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "4"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "5"
                    },
                    {
                        "desc": "1.712",
                        "name": "1.712",
                        "value": "6"
                    }
                ]
            },
            "GstDvbSrcCode_Rate": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "NONE",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "1/2",
                        "name": "1/2",
                        "value": "1"
                    },
                    {
                        "desc": "2/3",
                        "name": "2/3",
                        "value": "2"
                    },
                    {
                        "desc": "3/4",
                        "name": "3/4",
                        "value": "3"
                    },
                    {
                        "desc": "4/5",
                        "name": "4/5",
                        "value": "4"
                    },
                    {
                        "desc": "5/6",
                        "name": "5/6",
                        "value": "5"
                    },
                    {
                        "desc": "6/7",
                        "name": "6/7",
                        "value": "6"
                    },
                    {
                        "desc": "7/8",
                        "name": "7/8",
                        "value": "7"
                    },
                    {
                        "desc": "8/9",
                        "name": "8/9",
                        "value": "8"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "9"
                    },
                    {
                        "desc": "3/5",
                        "name": "3/5",
                        "value": "10"
                    },
                    {
                        "desc": "9/10",
                        "name": "9/10",
                        "value": "11"
                    },
                    {
                        "desc": "2/5",
                        "name": "2/5",
                        "value": "12"
                    }
                ]
            },
            "GstDvbSrcDelsys": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "UNDEFINED",
                        "name": "undefined",
                        "value": "0"
                    },
                    {
                        "desc": "DVB-C-A",
                        "name": "dvb-c-a",
                        "value": "1"
                    },
                    {
                        "desc": "DVB-C-B",
                        "name": "dvb-c-b",
                        "value": "2"
                    },
                    {
                        "desc": "DVB-T",
                        "name": "dvb-t",
                        "value": "3"
                    },
                    {
                        "desc": "DSS",
                        "name": "dss",
                        "value": "4"
                    },
                    {
                        "desc": "DVB-S",
                        "name": "dvb-s",
                        "value": "5"
                    },
                    {
                        "desc": "DVB-S2",
                        "name": "dvb-s2",
                        "value": "6"
                    },
                    {
                        "desc": "DVB-H",
                        "name": "dvb-h",
                        "value": "7"
                    },
                    {
                        "desc": "ISDB-T",
                        "name": "isdb-t",
                        "value": "8"
                    },
                    {
                        "desc": "ISDB-S",
                        "name": "isdb-s",
                        "value": "9"
                    },
                    {
                        "desc": "ISDB-C",
                        "name": "isdb-c",
                        "value": "10"
                    },
                    {
                        "desc": "ATSC",
                        "name": "atsc",
                        "value": "11"
                    },
                    {
                        "desc": "ATSC-MH",
                        "name": "atsc-mh",
                        "value": "12"
                    },
                    {
                        "desc": "DTMB",
                        "name": "dtmb",
                        "value": "13"
                    },
                    {
                        "desc": "CMMB",
                        "name": "cmmb",
                        "value": "14"
                    },
                    {
                        "desc": "DAB",
                        "name": "dab",
                        "value": "15"
                    },
                    {
                        "desc": "DVB-T2",
                        "name": "dvb-t2",
                        "value": "16"
                    },
                    {
                        "desc": "TURBO",
                        "name": "turbo",
                        "value": "17"
                    },
                    {
                        "desc": "DVB-C-C",
                        "name": "dvb-c-c",
                        "value": "18"
                    }
                ]
            },
            "GstDvbSrcGuard": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "32",
                        "name": "32",
                        "value": "0"
                    },
                    {
                        "desc": "16",
                        "name": "16",
                        "value": "1"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "2"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "3"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "4"
                    },
                    {
                        "desc": "128",
                        "name": "128",
                        "value": "5"
                    },
                    {
                        "desc": "19/128",
                        "name": "19/128",
                        "value": "6"
                    },
                    {
                        "desc": "19/256",
                        "name": "19/256",
                        "value": "7"
                    },
                    {
                        "desc": "PN420",
                        "name": "pn420",
                        "value": "8"
                    },
                    {
                        "desc": "PN595",
                        "name": "pn595",
                        "value": "9"
                    },
                    {
                        "desc": "PN945",
                        "name": "pn945",
                        "value": "10"
                    }
                ]
            },
            "GstDvbSrcHierarchy": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "NONE",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "3"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "4"
                    }
                ]
            },
            "GstDvbSrcInterleaving": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "NONE",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "1"
                    },
                    {
                        "desc": "240",
                        "name": "240",
                        "value": "2"
                    },
                    {
                        "desc": "720",
                        "name": "720",
                        "value": "3"
                    }
                ]
            },
            "GstDvbSrcInversion": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "OFF",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "ON",
                        "name": "on",
                        "value": "1"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "2"
                    }
                ]
            },
            "GstDvbSrcModulation": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "QPSK",
                        "name": "qpsk",
                        "value": "0"
                    },
                    {
                        "desc": "QAM 16",
                        "name": "qam-16",
                        "value": "1"
                    },
                    {
                        "desc": "QAM 32",
                        "name": "qam-32",
                        "value": "2"
                    },
                    {
                        "desc": "QAM 64",
                        "name": "qam-64",
                        "value": "3"
                    },
                    {
                        "desc": "QAM 128",
                        "name": "qam-128",
                        "value": "4"
                    },
                    {
                        "desc": "QAM 256",
                        "name": "qam-256",
                        "value": "5"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "6"
                    },
                    {
                        "desc": "8VSB",
                        "name": "8vsb",
                        "value": "7"
                    },
                    {
                        "desc": "16VSB",
                        "name": "16vsb",
                        "value": "8"
                    },
                    {
                        "desc": "8PSK",
                        "name": "8psk",
                        "value": "9"
                    },
                    {
                        "desc": "16APSK",
                        "name": "16apsk",
                        "value": "10"
                    },
                    {
                        "desc": "32APSK",
                        "name": "32apsk",
                        "value": "11"
                    },
                    {
                        "desc": "DQPSK",
                        "name": "dqpsk",
                        "value": "12"
                    },
                    {
                        "desc": "QAM 4 NR",
                        "name": "qam-4-nr",
                        "value": "13"
                    }
                ]
            },
            "GstDvbSrcPilot": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "ON",
                        "name": "on",
                        "value": "0"
                    },
                    {
                        "desc": "OFF",
                        "name": "off",
                        "value": "1"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "2"
                    }
                ]
            },
            "GstDvbSrcRolloff": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "35",
                        "name": "35",
                        "value": "0"
                    },
                    {
                        "desc": "20",
                        "name": "20",
                        "value": "1"
                    },
                    {
                        "desc": "25",
                        "name": "25",
                        "value": "2"
                    },
                    {
                        "desc": "auto",
                        "name": "auto",
                        "value": "3"
                    }
                ]
            },
            "GstDvbSrcTransmission_Mode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "2K",
                        "name": "2k",
                        "value": "0"
                    },
                    {
                        "desc": "8K",
                        "name": "8k",
                        "value": "1"
                    },
                    {
                        "desc": "AUTO",
                        "name": "auto",
                        "value": "2"
                    },
                    {
                        "desc": "4K",
                        "name": "4k",
                        "value": "3"
                    },
                    {
                        "desc": "1K",
                        "name": "1k",
                        "value": "4"
                    },
                    {
                        "desc": "16K",
                        "name": "16k",
                        "value": "5"
                    },
                    {
                        "desc": "32K",
                        "name": "32k",
                        "value": "6"
                    },
                    {
                        "desc": "C1",
                        "name": "c1",
                        "value": "7"
                    },
                    {
                        "desc": "C3780",
                        "name": "c3780",
                        "value": "8"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dvbsubenc": {
        "description": "DVB subtitle parser and encoder",
        "elements": {
            "dvbsubenc": {
                "author": "Jan Schmidt <jan@centricular.com>",
                "description": "Encodes AYUV video frames streams into DVB subtitles",
                "hierarchy": [
                    "GstDvbSubEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video",
                "long-name": "DVB subtitle encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { AYUV }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "subpicture/x-dvb:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-colours": {
                        "blurb": "Maximum Number of Colours to output",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16",
                        "max": "256",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Apply an offset to incoming timestamps before output (in nanoseconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstdvbsubenc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dvbsuboverlay": {
        "description": "DVB subtitle renderer",
        "elements": {
            "dvbsuboverlay": {
                "author": "Mart Raudsepp <mart.raudsepp@collabora.co.uk>",
                "description": "Renders DVB subtitles",
                "hierarchy": [
                    "GstDVBSubOverlay",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Mixer/Video/Overlay/Subtitle",
                "long-name": "DVB Subtitles Overlay",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "text_sink": {
                        "caps": "subpicture/x-dvb:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "video_sink": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "enable": {
                        "blurb": "Enable rendering of subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "force-end": {
                        "blurb": "Assume PES-aligned subtitles and force end-of-display",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-page-timeout": {
                        "blurb": "Limit maximum display time of a subtitle page (0 - disabled, value in seconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstdvbsuboverlay",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "dvdspu": {
        "description": "DVD Sub-picture Overlay element",
        "elements": {
            "dvdspu": {
                "author": "Jan Schmidt <thaytan@noraisin.net>",
                "description": "Parses Sub-Picture command streams and renders the SPU overlay onto the video as it passes through",
                "hierarchy": [
                    "GstDVDSpu",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Mixer/Video/Overlay/SubPicture/DVD/Bluray",
                "long-name": "Sub-picture Overlay",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, NV12, YV12 }\n          width: [ 16, 4096 ]\n         height: [ 16, 4096 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "subpicture": {
                        "caps": "subpicture/x-dvd:\nsubpicture/x-pgs:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "video": {
                        "caps": "video/x-raw:\n         format: { I420, NV12, YV12 }\n          width: [ 16, 4096 ]\n         height: [ 16, 4096 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstdvdspu",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "faac": {
        "description": "Free AAC Encoder (FAAC)",
        "elements": {
            "faac": {
                "author": "Ronald Bultje <rbultje@ronald.bitfreak.net>",
                "description": "Free MPEG-2/4 AAC encoder",
                "hierarchy": [
                    "GstFaac",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "AAC audio encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 1\naudio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 2\n   channel-mask: 0x0000000000000003\naudio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 3\n   channel-mask: 0x0000000000000007\naudio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 4\n   channel-mask: 0x0000000000000107\naudio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 5\n   channel-mask: 0x0000000000000037\naudio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 6\n   channel-mask: 0x000000000000003f\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/mpeg:\n    mpegversion: 4\n       channels: [ 1, 6 ]\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n  stream-format: { (string)adts, (string)raw }\n   base-profile: { (string)main, (string)lc, (string)ssr, (string)ltp }\n         framed: true\naudio/mpeg:\n    mpegversion: 2\n       channels: [ 1, 6 ]\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n  stream-format: { (string)adts, (string)raw }\n        profile: { (string)main, (string)lc }\n         framed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Average Bitrate (ABR) in bits/sec",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "128000",
                        "max": "320000",
                        "min": "8000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "midside": {
                        "blurb": "Allow mid/side encoding",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "quality": {
                        "blurb": "Variable bitrate (VBR) quantizer quality in %%",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "1000",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "rate-control": {
                        "blurb": "Encoding bitrate type (VBR/ABR)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "VBR encoding (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFaacBrtype",
                        "writable": true
                    },
                    "shortctl": {
                        "blurb": "Block type encorcing",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "Normal block type (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFaacShortCtl",
                        "writable": true
                    },
                    "tns": {
                        "blurb": "Use temporal noise shaping",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstfaac",
        "license": "LGPL",
        "other-types": {
            "GstFaacBrtype": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "VBR",
                        "name": "VBR encoding",
                        "value": "1"
                    },
                    {
                        "desc": "ABR",
                        "name": "ABR encoding",
                        "value": "2"
                    }
                ]
            },
            "GstFaacShortCtl": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "SHORTCTL_NORMAL",
                        "name": "Normal block type",
                        "value": "0"
                    },
                    {
                        "desc": "SHORTCTL_NOSHORT",
                        "name": "No short blocks",
                        "value": "1"
                    },
                    {
                        "desc": "SHORTCTL_NOLONG",
                        "name": "No long blocks",
                        "value": "2"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "faad": {
        "description": "Free AAC Decoder (FAAD)",
        "elements": {
            "faad": {
                "author": "Ronald Bultje <rbultje@ronald.bitfreak.net>",
                "description": "Free MPEG-2/4 AAC decoder",
                "hierarchy": [
                    "GstFaad",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "AAC audio decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/mpeg:\n    mpegversion: 2\naudio/mpeg:\n    mpegversion: 4\n  stream-format: { (string)raw, (string)adts }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: [ 1, 8 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "secondary"
            }
        },
        "filename": "gstfaad",
        "license": "GPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "faceoverlay": {
        "description": "SVG Face Overlay",
        "elements": {
            "faceoverlay": {
                "author": "Laura Lucas Alday <lauralucas@gmail.com>",
                "description": "Overlays SVG graphics over a detected face in a video stream",
                "hierarchy": [
                    "GstFaceOverlay",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "faceoverlay",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { RGB }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "h": {
                        "blurb": "Specify image height relative to face height.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "location": {
                        "blurb": "Location of SVG file to use for face overlay",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "w": {
                        "blurb": "Specify image width relative to face width.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "x": {
                        "blurb": "Specify image x relative to detected face x.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3.40282e+38",
                        "min": "-3.40282e+38",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Specify image y relative to detected face y.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3.40282e+38",
                        "min": "-3.40282e+38",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstfaceoverlay",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "fbdevsink": {
        "description": "Linux framebuffer video sink",
        "elements": {
            "fbdevsink": {
                "author": "Sean D'Epagnier <sean@depagnier.com>",
                "description": "Linux framebuffer videosink",
                "hierarchy": [
                    "GstFBDEVSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Video",
                "long-name": "fbdev video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { RGB, BGR, BGRx, xBGR, RGB, RGBx, xRGB, RGB15, RGB16 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "The framebuffer device eg: /dev/fb0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstfbdevsink",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "fdkaac": {
        "description": "Fraunhofer FDK AAC Codec plugin",
        "elements": {
            "fdkaacdec": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "FDK AAC audio decoder",
                "hierarchy": [
                    "GstFdkAacDec",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "FDK AAC audio decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/mpeg:\n    mpegversion: { (int)2, (int)4 }\n  stream-format: { (string)adts, (string)adif, (string)raw }\n       channels: [ 1, 8 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: [ 1, 8 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "marginal"
            },
            "fdkaacenc": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "FDK AAC audio encoder",
                "hierarchy": [
                    "GstFdkAacEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "FDK AAC audio encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: { (int)1, (int)2, (int)3, (int)4, (int)5, (int)6, (int)8 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/mpeg:\n    mpegversion: 4\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: { (int)1, (int)2, (int)3, (int)4, (int)5, (int)6, (int)8 }\n  stream-format: { (string)adts, (string)adif, (string)raw }\n   base-profile: lc\n         framed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Target Audio Bitrate (0 = fixed value based on  sample rate and channel count)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstfdkaac",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "festival": {
        "description": "Synthesizes plain text into audio",
        "elements": {
            "festival": {
                "author": "Wim Taymans <wim.taymans@gmail.com>",
                "description": "Synthesizes plain text into audio",
                "hierarchy": [
                    "GstFestival",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "Festival Text-to-Speech synthesizer",
                "pad-templates": {
                    "sink": {
                        "caps": "text/x-raw:\n         format: utf8\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-wav:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstfestival",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "fieldanalysis": {
        "description": "Video field analysis",
        "elements": {
            "fieldanalysis": {
                "author": "Robert Swain <robert.swain@collabora.co.uk>",
                "description": "Analyse fields from video frames to identify if they are progressive/telecined/interlaced",
                "hierarchy": [
                    "GstFieldAnalysis",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analysis/Video",
                "long-name": "Video field analysis",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { YUY2, UYVY, Y42B, I420, YV12 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { YUY2, UYVY, Y42B, I420, YV12 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "block-height": {
                        "blurb": "Block height for windowed comb detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "block-threshold": {
                        "blurb": "Block threshold for windowed comb detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "80",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "block-width": {
                        "blurb": "Block width for windowed comb detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16",
                        "max": "18446744073709551615",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "comb-method": {
                        "blurb": "Metric to be used for identifying comb artifacts if using windowed comb detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5-tap (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "FieldAnalysisCombMethod",
                        "writable": true
                    },
                    "field-metric": {
                        "blurb": "Metric to be used for comparing same parity fields to decide if they are a repeated field for telecine",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ssd (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFieldAnalysisFieldMetric",
                        "writable": true
                    },
                    "field-threshold": {
                        "blurb": "Threshold for field metric decisions",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.08",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frame-metric": {
                        "blurb": "Metric to be used for comparing opposite parity fields to decide if they are a progressive frame",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5-tap (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFieldAnalysisFrameMetric",
                        "writable": true
                    },
                    "frame-threshold": {
                        "blurb": "Threshold for frame metric decisions",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.002",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ignored-lines": {
                        "blurb": "Ignore this many lines from the top and bottom for windowed comb detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2",
                        "max": "18446744073709551615",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "noise-floor": {
                        "blurb": "Noise floor for appropriate metrics (per-pixel metric values with a score less than this will be ignored)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "spatial-threshold": {
                        "blurb": "Threshold for combing metric decisions",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9",
                        "max": "9223372036854775807",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstfieldanalysis",
        "license": "LGPL",
        "other-types": {
            "FieldAnalysisCombMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Difference to above sample in same field small and difference to sample in other field large",
                        "name": "32-detect",
                        "value": "0"
                    },
                    {
                        "desc": "Differences between current sample and the above/below samples in other field multiplied together, larger than squared spatial threshold (from Tritical's isCombed)",
                        "name": "isCombed",
                        "value": "1"
                    },
                    {
                        "desc": "5-tap [1,-3,4,-3,1] vertical filter result is larger than spatial threshold*6",
                        "name": "5-tap",
                        "value": "2"
                    }
                ]
            },
            "GstFieldAnalysisFieldMetric": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Sum of Absolute Differences",
                        "name": "sad",
                        "value": "0"
                    },
                    {
                        "desc": "Sum of Squared Differences",
                        "name": "ssd",
                        "value": "1"
                    },
                    {
                        "desc": "Difference of 3-tap [1,4,1] Horizontal Filter",
                        "name": "3-tap",
                        "value": "2"
                    }
                ]
            },
            "GstFieldAnalysisFrameMetric": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "5-tap [1,-3,4,-3,1] Vertical Filter",
                        "name": "5-tap",
                        "value": "0"
                    },
                    {
                        "desc": "Windowed Comb Detection (not optimised)",
                        "name": "windowed-comb",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "flite": {
        "description": "Flite speech synthesizer plugin",
        "elements": {
            "flitetestsrc": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Creates audio test signals identifying channels",
                "hierarchy": [
                    "GstFliteTestSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio",
                "long-name": "Flite speech test source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: 48000\n       channels: [ 1, 8 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "samplesperbuffer": {
                        "blurb": "Number of samples in each outgoing buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstflite",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "fluidsynthmidi": {
        "description": "Fluidsynth MIDI Plugin",
        "elements": {
            "fluiddec": {
                "author": "Wim Taymans <wim.taymans@gmail.com>",
                "description": "Midi Synthesizer Element",
                "hierarchy": [
                    "GstFluidDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "Fluidsynth",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-midi-event:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n           rate: 44100\n       channels: 2\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "soundfont": {
                        "blurb": "the filename of a soundfont (NULL for default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "synth-chorus": {
                        "blurb": "Turn the chorus on or off",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "synth-gain": {
                        "blurb": "Set the master gain",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "synth-polyphony": {
                        "blurb": "The number of simultaneous voices",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "256",
                        "max": "65535",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "synth-reverb": {
                        "blurb": "Turn the reverb on or off",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstfluidsynthmidi",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "freeverb": {
        "description": "Reverberation/room effect",
        "elements": {
            "freeverb": {
                "author": "Stefan Sauer <ensonic@users.sf.net>",
                "description": "Add reverberation to audio streams",
                "hierarchy": [
                    "GstFreeverb",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "Reverberation/room effect",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F32LE, S16LE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F32LE, S16LE }\n           rate: [ 1, 2147483647 ]\n       channels: 2\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "damping": {
                        "blurb": "Damping of high frequencies",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "level": {
                        "blurb": "dry/wet level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "room-size": {
                        "blurb": "Size of the simulated room",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Stereo panorama width",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstfreeverb",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "frei0r": {
        "description": "frei0r plugin library",
        "elements": {
            "frei0r-filter-3-point-color-balance": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Maksim Golovkin",
                "description": "Adjust color balance with 3 color points",
                "hierarchy": [
                    "frei0r-filter-3-point-color-balance",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "3 point color balance",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "black-color-b": {
                        "blurb": "Black color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "black-color-g": {
                        "blurb": "Black color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "black-color-r": {
                        "blurb": "Black color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gray-color-b": {
                        "blurb": "Gray color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gray-color-g": {
                        "blurb": "Gray color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gray-color-r": {
                        "blurb": "Gray color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "source-image-on-left-side": {
                        "blurb": "Source image on left side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "split-preview": {
                        "blurb": "Split privew",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "white-color-b": {
                        "blurb": "White color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "white-color-g": {
                        "blurb": "White color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "white-color-r": {
                        "blurb": "White color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-3dflippo": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, c.e. prelz AS FLUIDO <fluido@fluido.as>",
                "description": "Frame rotation in 3d-space",
                "hierarchy": [
                    "frei0r-filter-3dflippo",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "3dflippo",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "center-position--x-": {
                        "blurb": "Position of the center of rotation on the X axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "center-position--y-": {
                        "blurb": "Position of the center of rotation on the Y axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "don-t-blank-mask": {
                        "blurb": "Mask for frame transposition is not blanked, so a trace of old transpositions is maintained",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fill-with-image-or-black": {
                        "blurb": "If true, pixels that are not transposed are black, otherwise, they are copied with the original",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "invert-rotation-assignment": {
                        "blurb": "If true, when mapping rotation, make inverted (wrong) assignment",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "x-axis-rotation": {
                        "blurb": "Rotation on the X axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-axis-rotation-rate": {
                        "blurb": "Rotation rate on the X axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-axis-rotation": {
                        "blurb": "Rotation on the Y axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-axis-rotation-rate": {
                        "blurb": "Rotation rate on the Y axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "z-axis-rotation": {
                        "blurb": "Rotation on the Z axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "z-axis-rotation-rate": {
                        "blurb": "Rotation rate on the Z axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-alpha0ps": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Display and manipulation of the alpha channel",
                "hierarchy": [
                    "frei0r-filter-alpha0ps",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "alpha0ps",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "display": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "display-input-alpha": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "invert": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "operation": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "shrink-grow-blur-amount": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333344",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "threshold": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-alphagrad": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Fills alpha channel with a gradient",
                "hierarchy": [
                    "frei0r-filter-alphagrad",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "alphagrad",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "min": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "operation": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "position": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "tilt": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "transition-width": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-alphaspot": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Draws simple shapes into the alpha channel",
                "hierarchy": [
                    "frei0r-filter-alphaspot",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "alphaspot",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "min": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "operation": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "position-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "position-y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "shape": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "size-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "size-y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "tilt": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "transition-width": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-b": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Extracts Blue from Image",
                "hierarchy": [
                    "frei0r-filter-b",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "B",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-baltan": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Kentaro, Jaromil",
                "description": "delayed alpha smoothed blit of time",
                "hierarchy": [
                    "frei0r-filter-baltan",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Baltan",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-bgsubtract0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Samuel Mimram",
                "description": "Bluescreen the background of a static video.",
                "hierarchy": [
                    "frei0r-filter-bgsubtract0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "BgSubtract0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blur": {
                        "blurb": "Blur alpha channel by given radius (to remove sharp edges)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "denoise": {
                        "blurb": "Remove noise",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "threshold": {
                        "blurb": "Threshold for difference",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.101961",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-bluescreen0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Hedde Bosman",
                "description": "Color to alpha (blit SRCALPHA)",
                "hierarchy": [
                    "frei0r-filter-bluescreen0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "bluescreen0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-b": {
                        "blurb": "The color to make transparent (B G R)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-g": {
                        "blurb": "The color to make transparent (B G R)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.94",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-r": {
                        "blurb": "The color to make transparent (B G R)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "distance": {
                        "blurb": "Distance to Color (127 is good)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.288",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-brightness": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Adjusts the brightness of a source image",
                "hierarchy": [
                    "frei0r-filter-brightness",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Brightness",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "brightness": {
                        "blurb": "The brightness value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-bw0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, coma@gephex.org",
                "description": "Turns image black/white.",
                "hierarchy": [
                    "frei0r-filter-bw0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "bw0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-c0rners": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Four corners geometry engine",
                "hierarchy": [
                    "frei0r-filter-c0rners",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "c0rners",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alpha-operation": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-1-x": {
                        "blurb": "X coordinate of corner 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-1-y": {
                        "blurb": "Y coordinate of corner 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-2-x": {
                        "blurb": "X coordinate of corner 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666666",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-2-y": {
                        "blurb": "Y coordinate of corner 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-3-x": {
                        "blurb": "X coordinate of corner 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666666",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-3-y": {
                        "blurb": "Y coordinate of corner 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666666",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-4-x": {
                        "blurb": "X coordinate of corner 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "corner-4-y": {
                        "blurb": "Y coordinate of corner 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666666",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "enable-stretch": {
                        "blurb": "Enable stretching",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "feather-alpha": {
                        "blurb": "Makes smooth transition into transparent",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "interpolator": {
                        "blurb": "Quality of interpolation",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.166667",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "stretch-x": {
                        "blurb": "Amount of stretching in X direction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "stretch-y": {
                        "blurb": "Amount of stretching in Y direction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "transparent-background": {
                        "blurb": "Makes background transparent",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-cairogradient": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Draws a gradient on top of image. Filter is given gradient start and end points, colors and opacities.",
                "hierarchy": [
                    "frei0r-filter-cairogradient",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "cairogradient",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blend-mode": {
                        "blurb": "Blend mode used to compose gradient on image. Accepted values: 'normal', 'add', 'saturate', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'colordodge', 'colorburn', 'hardlight', 'softlight', 'difference', 'exclusion', 'hslhue', 'hslsaturation', 'hslcolor', 'hslluminosity'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "normal",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "end-color-b": {
                        "blurb": "Second color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "end-color-g": {
                        "blurb": "Second color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "end-color-r": {
                        "blurb": "Second color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "end-opacity": {
                        "blurb": "Opacity of the second color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "end-x": {
                        "blurb": "X position of the end point of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "end-y": {
                        "blurb": "Y position of the end point of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "offset": {
                        "blurb": "Position of first color in the line connecting gradient ends, really useful only for radial gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "pattern": {
                        "blurb": "Linear or radial gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "gradient_linear",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "start-color-b": {
                        "blurb": "First color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "start-color-g": {
                        "blurb": "First color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "start-color-r": {
                        "blurb": "First color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "start-opacity": {
                        "blurb": "Opacity of the first color of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "start-x": {
                        "blurb": "X position of the start point of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "start-y": {
                        "blurb": "Y position of the start point of the gradient",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-cairoimagegrid": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Draws a grid of input images.",
                "hierarchy": [
                    "frei0r-filter-cairoimagegrid",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "cairoimagegrid",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "columns": {
                        "blurb": "Number of columns in the image grid. Input range 0 - 1 is interpreted as range 1 - 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.105263",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "rows": {
                        "blurb": "Number of rows in the image grid. Input range 0 - 1 is interpreted as range 1 - 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.105263",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-cartoon": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Dries Pruimboom, Jaromil",
                "description": "Cartoonify video, do a form of edge detect",
                "hierarchy": [
                    "frei0r-filter-cartoon",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Cartoon",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "diffspace": {
                        "blurb": "difference space: a value from 0 to 256 (mapped to [0,1])",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00390625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "triplevel": {
                        "blurb": "level of trip: mapped to [0,1] asymptotical",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-color-distance": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Calculates the distance between the selected color and the current pixel and uses that value as new pixel value",
                "hierarchy": [
                    "frei0r-filter-color-distance",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Color Distance",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-b": {
                        "blurb": "The Source Color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-g": {
                        "blurb": "The Source Color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-r": {
                        "blurb": "The Source Color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-coloradj-rgb": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Simple color adjustment",
                "hierarchy": [
                    "frei0r-filter-coloradj-rgb",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "coloradj_RGB",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "action": {
                        "blurb": "Type of color adjustment",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333344",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "alpha-controlled": {
                        "blurb": "Adjust only areas with nonzero alpha",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "b": {
                        "blurb": "Amount of blue",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "g": {
                        "blurb": "Amount of green",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "keep-luma": {
                        "blurb": "Don't change brightness",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "luma-formula": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.500025",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "r": {
                        "blurb": "Amount of red",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-colorhalftone": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Filters image to resemble a halftone print in which tones are represented as variable sized dots",
                "hierarchy": [
                    "frei0r-filter-colorhalftone",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "colorhalftone",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cyan-angle": {
                        "blurb": "Cyan dots angle",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "dot-radius": {
                        "blurb": "Halftone pattern dot size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "magenta-angle": {
                        "blurb": "Magenta dots angle",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.45",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "yellow-angle": {
                        "blurb": "Yellow dots angle",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-colorize": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Colorizes image to selected hue, saturation and lightness",
                "hierarchy": [
                    "frei0r-filter-colorize",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "colorize",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "hue": {
                        "blurb": "Color shade of the colorized image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "lightness": {
                        "blurb": "Lightness of the colorized image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "saturation": {
                        "blurb": "Amount of color in the colorized image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-colortap": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Applies a pre-made color effect to image",
                "hierarchy": [
                    "frei0r-filter-colortap",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "colortap",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "table": {
                        "blurb": "Lookup table used to filter colors. One of: xpro, sepia, heat, red_green, old_photo, xray, esses, yellow_blue",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "esses",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-contrast0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Adjusts the contrast of a source image",
                "hierarchy": [
                    "frei0r-filter-contrast0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Contrast0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "contrast": {
                        "blurb": "The contrast value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-curves": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Maksim Golovkin, Till Theato",
                "description": "Adjust luminance or color channel intensity with curve level mapping",
                "hierarchy": [
                    "frei0r-filter-curves",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Curves",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "b--zier-spline": {
                        "blurb": "Use cubic Bézier spline. Has to be a sorted list of points in the format \"handle1x;handle1y#pointx;pointy#handle2x;handle2y\"(pointx = in, pointy = out). Points are separated by a \"|\".The values can have \"double\" precision. x, y for points should be in the range 0-1. x,y for handles might also be out of this range.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "channel": {
                        "blurb": "Channel to adjust (0 = red, 0.1 = green, 0.2 = blue, 0.3 = alpha, 0.4 = luma, 0.5 = rgb, 0.6 = hue, 0.7 = saturation)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "curve-point-number": {
                        "blurb": "Number of points to use to build curve (/10 to fit [0,1] parameter range). Minimum 2 (0.2), Maximum 5 (0.5). Not relevant for Bézier spline.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "graph-position": {
                        "blurb": "Output image corner where curve graph will be drawn (0.1 = TOP,LEFT; 0.2 = TOP,RIGHT; 0.3 = BOTTOM,LEFT; 0.4 = BOTTOM, RIGHT)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "luma-formula": {
                        "blurb": "Use Rec. 601 (false) or Rec. 709 (true)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "point-1-input-value": {
                        "blurb": "Point 1 input value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-1-output-value": {
                        "blurb": "Point 1 output value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-2-input-value": {
                        "blurb": "Point 2 input value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-2-output-value": {
                        "blurb": "Point 2 output value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-3-input-value": {
                        "blurb": "Point 3 input value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-3-output-value": {
                        "blurb": "Point 3 output value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-4-input-value": {
                        "blurb": "Point 4 input value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-4-output-value": {
                        "blurb": "Point 4 output value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-5-input-value": {
                        "blurb": "Point 5 input value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "point-5-output-value": {
                        "blurb": "Point 5 output value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "show-curves": {
                        "blurb": "Draw curve graph on output image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-defish0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Non rectilinear lens mappings",
                "hierarchy": [
                    "frei0r-filter-defish0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Defish0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amount": {
                        "blurb": "Focal Ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "aspect-type": {
                        "blurb": "Pixel aspect ratio presets",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "defish": {
                        "blurb": "Fish or Defish",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "interpolator": {
                        "blurb": "Quality of interpolation",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.166667",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "manual-aspect": {
                        "blurb": "Manual Pixel Aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "manual-scale": {
                        "blurb": "Manual Scale",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "scaling": {
                        "blurb": "Scaling method",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666667",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Mapping function",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666667",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-delay0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "video delay",
                "hierarchy": [
                    "frei0r-filter-delay0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "delay0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "delaytime": {
                        "blurb": "the delay time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-delaygrab": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Bill Spinhover, Andreas Schiffler, Jaromil",
                "description": "delayed frame blitting mapped on a time bitmap",
                "hierarchy": [
                    "frei0r-filter-delaygrab",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Delaygrab",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-distort0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Gephex crew",
                "description": "Plasma",
                "hierarchy": [
                    "frei0r-filter-distort0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Distort0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "The amplitude of the plasma signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "frequency": {
                        "blurb": "The frequency of the plasma signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.005",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "use-velocity": {
                        "blurb": "'Time Based' or 'Adjustable Velocity'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "velocity": {
                        "blurb": "Changing speed of the plasma signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-dither": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Dithers the image and reduces the number of available colors",
                "hierarchy": [
                    "frei0r-filter-dither",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "dither",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "levels": {
                        "blurb": "Number of values per channel",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.104167",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "matrixid": {
                        "blurb": "Id of matrix used for dithering",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-edgeglow": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Salsaman",
                "description": "Edgeglow filter",
                "hierarchy": [
                    "frei0r-filter-edgeglow",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Edgeglow",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "lredscale": {
                        "blurb": "multiplier for downscaling non-edge brightness",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "lthresh": {
                        "blurb": "threshold for edge lightening",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "lupscale": {
                        "blurb": "multiplier for upscaling edge brightness",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-elastic-scale-filter": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Matthias Schnoell",
                "description": "This is a frei0r filter which allows to scale video footage non-linearly.",
                "hierarchy": [
                    "frei0r-filter-elastic-scale-filter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Elastic scale filter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "center": {
                        "blurb": "Horizontal center position of the linear area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "linear-scale-factor": {
                        "blurb": "Amount how much the linear area is scaled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.7",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "linear-width": {
                        "blurb": "Width of the linear area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "non-linear-scale-factor": {
                        "blurb": "Amount how much the outer left and outer right areas are scaled non linearly",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.7125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-emboss": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Creates embossed relief image of source image",
                "hierarchy": [
                    "frei0r-filter-emboss",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "emboss",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "azimuth": {
                        "blurb": "Light direction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "elevation": {
                        "blurb": "Background lightness",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "width45": {
                        "blurb": "Bump height",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-equaliz0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal (Drone)",
                "description": "Equalizes the intensity histograms",
                "hierarchy": [
                    "frei0r-filter-equaliz0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Equaliz0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-facebl0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, ZioKernel, Biilly, Jilt, Jaromil, ddennedy",
                "description": "automatic face blur",
                "hierarchy": [
                    "frei0r-filter-facebl0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "FaceBl0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "classifier": {
                        "blurb": "Full path to the XML pattern model for recognition; look in /usr/share/opencv/haarcascades",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "/usr/share/opencv/haarcascades/haarcascade_frontalface_default.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "ellipse": {
                        "blurb": "Draw a red ellipse around the object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "largest": {
                        "blurb": "Maximum object size in pixels, divided by 10000",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "neighbors": {
                        "blurb": "Minimum number of rectangles that makes up an object, divided by 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.02",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "recheck": {
                        "blurb": "How often to detect an object in number of frames, divided by 1000",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.025",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "search-scale": {
                        "blurb": "The search window scale factor, divided by 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.12",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "smallest": {
                        "blurb": "Minimum window size in pixels, divided by 1000",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "threads": {
                        "blurb": "How many threads to use divided by 100; 0 uses CPU count",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-flippo": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Carlo Emilio, Jean-Sebastien Senecal",
                "description": "Flipping in x and y axis",
                "hierarchy": [
                    "frei0r-filter-flippo",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Flippo",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "x-axis": {
                        "blurb": "Flipping on the horizontal axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "y-axis": {
                        "blurb": "Flipping on the vertical axis",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-g": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Extracts Green from Image",
                "hierarchy": [
                    "frei0r-filter-g",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "G",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-gamma": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Adjusts the gamma value of a source image",
                "hierarchy": [
                    "frei0r-filter-gamma",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Gamma",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "gamma": {
                        "blurb": "The gamma value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-glitch0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, IDENT Software",
                "description": "Adds glitches and block shifting",
                "hierarchy": [
                    "frei0r-filter-glitch0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Glitch0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "block-height": {
                        "blurb": "Height range of the block that will be shifted/glitched",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.498956",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "color-glitching-intensity": {
                        "blurb": "How intensive should be color distortion",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "glitch-frequency": {
                        "blurb": "How frequently the glitch should be applied",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "shift-intensity": {
                        "blurb": "How much we should move blocks when glitching",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.499218",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-glow": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Creates a Glamorous Glow",
                "hierarchy": [
                    "frei0r-filter-glow",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Glow",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blur": {
                        "blurb": "Blur of the glow",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-hqdn3d": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli, Daniel Moreno",
                "description": "High quality 3D denoiser from Mplayer",
                "hierarchy": [
                    "frei0r-filter-hqdn3d",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "hqdn3d",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "spatial": {
                        "blurb": "Amount of spatial filtering",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.04",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "temporal": {
                        "blurb": "Amount of temporal filtering",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.06",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-hueshift0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Shifts the hue of a source image",
                "hierarchy": [
                    "frei0r-filter-hueshift0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Hueshift0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "hue": {
                        "blurb": "The shift value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-iir-blur": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Three types of fast IIR blurring",
                "hierarchy": [
                    "frei0r-filter-iir-blur",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "IIR blur",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amount": {
                        "blurb": "Amount of blur",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "edge": {
                        "blurb": "Edge compensation",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Blur type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.333344",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-invert0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Gephex crew",
                "description": "Inverts all colors of a source image",
                "hierarchy": [
                    "frei0r-filter-invert0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Invert0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-k-means-clustering": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, binarymillenium",
                "description": "Clusters of a source image by color and spatial distance",
                "hierarchy": [
                    "frei0r-filter-k-means-clustering",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "K-Means Clustering",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "dist-weight": {
                        "blurb": "The weight on distance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "num": {
                        "blurb": "The number of clusters",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-keyspillm0pup": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Reduces the visibility of key color spill in chroma keying",
                "hierarchy": [
                    "frei0r-filter-keyspillm0pup",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "keyspillm0pup",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amount-1": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.55",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "amount-2": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "hue-gate": {
                        "blurb": "Restrict mask to hues close to key",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "key-color-b": {
                        "blurb": "Key color that was used for chroma keying",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "key-color-g": {
                        "blurb": "Key color that was used for chroma keying",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "key-color-r": {
                        "blurb": "Key color that was used for chroma keying",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mask-to-alpha": {
                        "blurb": "Replace alpha channel with the mask",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mask-type": {
                        "blurb": "Which mask to apply [0,1,2,3]",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "operation-1": {
                        "blurb": "First operation 1 [0,1,2]",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "operation-2": {
                        "blurb": "Second operation 2 [0,1,2]",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "saturation-threshold": {
                        "blurb": "Restrict mask to saturated colors",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "show-mask": {
                        "blurb": "Replace image with the mask",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Range of colors around the key where effect gradually decreases",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "target-color-b": {
                        "blurb": "Desired color to replace key residue with",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "target-color-g": {
                        "blurb": "Desired color to replace key residue with",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "target-color-r": {
                        "blurb": "Desired color to replace key residue with",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tolerance": {
                        "blurb": "Range of colors around the key, where effect is full strength",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.24",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-lens-correction": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Allows compensation of lens distortion",
                "hierarchy": [
                    "frei0r-filter-lens-correction",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Lens Correction",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "brightness": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "correction-near-center": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "correction-near-edges": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-center": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-center": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-letterb0xed": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Adds Black Borders at top and bottom for Cinema Look",
                "hierarchy": [
                    "frei0r-filter-letterb0xed",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "LetterB0xed",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "border-width": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "transparency": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-levels": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Maksim Golovkin",
                "description": "Adjust luminance or color channel intensity",
                "hierarchy": [
                    "frei0r-filter-levels",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Levels",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "black-output": {
                        "blurb": "Black output",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "channel": {
                        "blurb": "Channel to adjust levels. 0%%=R, 10%%=G, 20%%=B, 30%%=Luma",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "gamma": {
                        "blurb": "Gamma",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "histogram-position": {
                        "blurb": "Histogram position. 0%%=TL, 10%%=TR, 20%%=BL, 30%%=BR",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "input-black-level": {
                        "blurb": "Input black level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "input-white-level": {
                        "blurb": "Input white level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "show-histogram": {
                        "blurb": "Show histogram",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "white-output": {
                        "blurb": "White output",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-light-graffiti": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Simon A. Eugster (Granjow)",
                "description": "Creates light graffitis from a video by keeping the brightest spots.",
                "hierarchy": [
                    "frei0r-filter-light-graffiti",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Light Graffiti",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "backgroundweight": {
                        "blurb": "Describes how strong the (accumulated) background should shine through",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "blackreference": {
                        "blurb": "Uses black as background image instead of the first frame.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dim": {
                        "blurb": "Dimming of the light mask",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "longalpha": {
                        "blurb": "Alpha value for moving average",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "loweroverexposure": {
                        "blurb": "Prevents some overexposure if the light source stays steady too long (varying speed)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "nonlineardim": {
                        "blurb": "Nonlinear dimming (may look more natural)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "reset": {
                        "blurb": "Reset filter masks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "saturation": {
                        "blurb": "Saturation of lights",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "sensitivity": {
                        "blurb": "Sensitivity of the effect for light (higher sensitivity will lead to brighter lights)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "statsbrightness": {
                        "blurb": "Display the brightness and threshold, for adjusting the brightness threshold parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "statsdifference": {
                        "blurb": "Display the background difference and threshold",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "statsdiffsum": {
                        "blurb": "Display the sum of the background difference and the threshold",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "thresholdbrightness": {
                        "blurb": "Brightness threshold to distinguish between foreground and background",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.588235",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "thresholddifference": {
                        "blurb": "Threshold: Difference to background to distinguish between fore- and background",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "thresholddiffsum": {
                        "blurb": "Threshold for sum of differences. Can in most cases be ignored (set to 0).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "transparentbackground": {
                        "blurb": "Make the background transparent",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-luminance": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Creates a luminance map of the image",
                "hierarchy": [
                    "frei0r-filter-luminance",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Luminance",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-mask0mate": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Creates an square alpha-channel mask",
                "hierarchy": [
                    "frei0r-filter-mask0mate",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Mask0Mate",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blur": {
                        "blurb": "Blur the outline of the mask",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "bottom": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "invert": {
                        "blurb": "Invert the mask, creates a hole in the frame.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "left": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "right": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "top": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-medians": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Implements several median-type filters",
                "hierarchy": [
                    "frei0r-filter-medians",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Medians",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "size": {
                        "blurb": "Size for 'var size' type filter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Choose type of median: Cross5, Square3x3, Bilevel, Diamond3x3, Square5x5, Temp3, Temp5, ArceBI, ML3D, ML3dEX, VarSize",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Square3x3",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-ndvi-filter": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Brian Matherly",
                "description": "This filter creates a false image from a visible + infrared source.",
                "hierarchy": [
                    "frei0r-filter-ndvi-filter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "NDVI filter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-map": {
                        "blurb": "The color map to use. One of 'earth', 'grayscale', 'heat' or 'rainbow'.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "grayscale",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "index-calculation": {
                        "blurb": "The index calculation to use. One of 'ndvi' or 'vi'.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "ndvi",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "legend": {
                        "blurb": "Control legend display. One of 'off' or 'bottom'.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "levels": {
                        "blurb": "The number of color levels to use in the false image (divided by 1000).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.256",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "nir-channel": {
                        "blurb": "The channel to use for the near-infrared component. One of 'r', 'g', or 'b'.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "r",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "nir-offset": {
                        "blurb": "An offset to be applied to the near-infrared component (mapped to [-100%%, 100%%].",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "nir-scale": {
                        "blurb": "A scaling factor to be applied to the near-infrared component (divided by 10).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "vis-offset": {
                        "blurb": "An offset to be applied to the visible component (mapped to [-100%%, 100%%].",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "vis-scale": {
                        "blurb": "A scaling factor to be applied to the visible component (divided by 10).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "visible-channel": {
                        "blurb": "The channel to use for the visible component. One of 'r', 'g', or 'b'.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "b",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-nervous": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Tannenbaum, Kentaro, Jaromil",
                "description": "flushes frames in time in a nervous way",
                "hierarchy": [
                    "frei0r-filter-nervous",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Nervous",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-nikon-d90-stairstepping-fix": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Simon A. Eugster (Granjow)",
                "description": "Removes the Stairstepping from Nikon D90 videos (720p only) by interpolation",
                "hierarchy": [
                    "frei0r-filter-nikon-d90-stairstepping-fix",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Nikon D90 Stairstepping fix",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-normaliz0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Chungzuwalla (chungzuwalla@rling.com)",
                "description": "Normalize (aka histogram stretch, contrast stretch)",
                "hierarchy": [
                    "frei0r-filter-normaliz0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Normaliz0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blackpt-b": {
                        "blurb": "Output color to which darkest input color is mapped (default black)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "blackpt-g": {
                        "blurb": "Output color to which darkest input color is mapped (default black)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "blackpt-r": {
                        "blurb": "Output color to which darkest input color is mapped (default black)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "independence": {
                        "blurb": "Proportion of independent to linked channel normalization (default 1.0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "smoothing": {
                        "blurb": "Amount of temporal smoothing of the input range, to reduce flicker (default 0.0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "strength": {
                        "blurb": "Strength of filter, from no effect to full normalization (default 1.0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "whitept-b": {
                        "blurb": "Output color to which brightest input color is mapped (default white)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "whitept-g": {
                        "blurb": "Output color to which brightest input color is mapped (default white)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "whitept-r": {
                        "blurb": "Output color to which brightest input color is mapped (default white)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-nosync0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "broken tv",
                "hierarchy": [
                    "frei0r-filter-nosync0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "nosync0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "hsync": {
                        "blurb": "the hsync offset",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-opencvfacedetect": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, binarymillenium, ddennedy",
                "description": "detect faces and draw shapes on them",
                "hierarchy": [
                    "frei0r-filter-opencvfacedetect",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "opencvfacedetect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alpha": {
                        "blurb": "The alpha channel value for the shapes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "antialias": {
                        "blurb": "Draw with antialiasing",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "classifier": {
                        "blurb": "Full path to the XML pattern model for recognition; look in /usr/share/opencv/haarcascades",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "/usr/share/opencv/haarcascades/haarcascade_frontalface_default.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "color-1-b": {
                        "blurb": "The color of the first object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-1-g": {
                        "blurb": "The color of the first object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-1-r": {
                        "blurb": "The color of the first object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-2-b": {
                        "blurb": "The color of the second object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-2-g": {
                        "blurb": "The color of the second object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-2-r": {
                        "blurb": "The color of the second object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-3-b": {
                        "blurb": "The color of the third object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-3-g": {
                        "blurb": "The color of the third object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-3-r": {
                        "blurb": "The color of the third object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-4-b": {
                        "blurb": "The color of the fourth object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-4-g": {
                        "blurb": "The color of the fourth object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-4-r": {
                        "blurb": "The color of the fourth object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-5-b": {
                        "blurb": "The color of the fifth object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-5-g": {
                        "blurb": "The color of the fifth object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-5-r": {
                        "blurb": "The color of the fifth object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "neighbors": {
                        "blurb": "Minimum number of rectangles that makes up an object, divided by 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.02",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "recheck": {
                        "blurb": "How often to detect an object in number of frames, divided by 1000",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.025",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "scale": {
                        "blurb": "Down scale the image prior detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.666667",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "search-scale": {
                        "blurb": "The search window scale factor, divided by 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.12",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "shape": {
                        "blurb": "The shape to draw: 0=circle, 0.1=ellipse, 0.2=rectangle, 1=random",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "smallest": {
                        "blurb": "Minimum window size in pixels, divided by 1000",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "stroke": {
                        "blurb": "Line width, divided by 100, or fill if 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "threads": {
                        "blurb": "How many threads to use divided by 100; 0 uses CPU count",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-perspective": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Distorts the image for a pseudo perspective",
                "hierarchy": [
                    "frei0r-filter-perspective",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Perspective",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bottom-left-Y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "bottom-left-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "bottom-right-Y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "bottom-right-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "top-left-Y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "top-left-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "top-right-Y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "top-right-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-pixeliz0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Gephex crew",
                "description": "Pixelize input image.",
                "hierarchy": [
                    "frei0r-filter-pixeliz0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "pixeliz0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "block-height": {
                        "blurb": "Vertical size of one \"pixel\"",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0291667",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "block-width": {
                        "blurb": "Horizontal size of one \"pixel\"",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.021875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-posterize": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Posterizes image by reducing the number of colors used in image",
                "hierarchy": [
                    "frei0r-filter-posterize",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "posterize",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "levels": {
                        "blurb": "Number of values per channel",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.104167",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-pr0be": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Measure video values",
                "hierarchy": [
                    "frei0r-filter-pr0be",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "pr0be",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "big-window": {
                        "blurb": "Display more data",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "measurement": {
                        "blurb": "What measurement to display",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-256-scale": {
                        "blurb": "use 0-255 instead of 0.0-1.0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "show-alpha": {
                        "blurb": "Display alpha value too",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "x": {
                        "blurb": "X position of probe",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-size": {
                        "blurb": "X size of probe",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Y position of probe",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-size": {
                        "blurb": "Y size of probe",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-pr0file": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "2D video oscilloscope",
                "hierarchy": [
                    "frei0r-filter-pr0file",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "pr0file",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alpha-trace": {
                        "blurb": "Show Alpha trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "b-trace": {
                        "blurb": "Show B trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "channel": {
                        "blurb": "Channel to numerically display",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375005",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "color": {
                        "blurb": "rec 601 or rec 709",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "crosshair-color": {
                        "blurb": "Color of the profile marker",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "display-average": {
                        "blurb": "e",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "display-maximum": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "display-minimum": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "display-rms": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-trace": {
                        "blurb": "Show G trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "length": {
                        "blurb": "Length of profile",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.589744",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "marker-1": {
                        "blurb": "Position of marker 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "marker-2": {
                        "blurb": "Position of marker 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-256-scale": {
                        "blurb": "use 0-255 instead of 0.0-1.0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pb-trace": {
                        "blurb": "Show Pb trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pr-trace": {
                        "blurb": "Show Pr trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "r-trace": {
                        "blurb": "Show R trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tilt": {
                        "blurb": "Tilt of profile",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x": {
                        "blurb": "X position of profile",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Y position of profile",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-trace": {
                        "blurb": "Show Y' trace on scope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-premultiply-or-unpremultiply": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Dan Dennedy",
                "description": "Multiply (or divide) each color component by the pixel's alpha value",
                "hierarchy": [
                    "frei0r-filter-premultiply-or-unpremultiply",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Premultiply or Unpremultiply",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "unpremultiply": {
                        "blurb": "Whether to unpremultiply instead",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-primaries": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Hedde Bosman",
                "description": "Reduce image to primary colors",
                "hierarchy": [
                    "frei0r-filter-primaries",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "primaries",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "factor": {
                        "blurb": "influence of mean px value. > 32 = 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Extracts Red from Image",
                "hierarchy": [
                    "frei0r-filter-r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "R",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-rgb-parade": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Albert Frisch",
                "description": "Displays a histogram of R, G and B of the video-data",
                "hierarchy": [
                    "frei0r-filter-rgb-parade",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "RGB-Parade",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "mix": {
                        "blurb": "The amount of source image mixed into background of display",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "overlay-sides": {
                        "blurb": "If false, the sides of image are shown without overlay",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-rgbnoise": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Adds RGB noise to image.",
                "hierarchy": [
                    "frei0r-filter-rgbnoise",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "rgbnoise",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "noise": {
                        "blurb": "Amount of noise added",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-rgbsplit0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, IDENT Software",
                "description": "RGB splitting and shifting",
                "hierarchy": [
                    "frei0r-filter-rgbsplit0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "rgbsplit0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "horizontal-split-distance": {
                        "blurb": "How far should layers be moved horizontally from each other",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "vertical-split-distance": {
                        "blurb": "How far should layers be moved vertically from each other",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-saturat0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Adjusts the saturation of a source image",
                "hierarchy": [
                    "frei0r-filter-saturat0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Saturat0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "saturation": {
                        "blurb": "The saturation value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-scale0tilt": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Scales, Tilts and Crops an Image",
                "hierarchy": [
                    "frei0r-filter-scale0tilt",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Scale0Tilt",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "clip-bottom": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "clip-left": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "clip-right": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "clip-top": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "scale-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "scale-y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "tilt-x": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "tilt-y": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-scanline0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "interlaced dark lines",
                "hierarchy": [
                    "frei0r-filter-scanline0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "scanline0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-select0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Color based alpha selection",
                "hierarchy": [
                    "frei0r-filter-select0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "select0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-to-select-b": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-to-select-g": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-to-select-r": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "delta-b---i---i": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "delta-g---b---chroma": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "delta-r---a---hue": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "edge-mode": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "invert-selection": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "operation": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "selection-subspace": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "subspace-shape": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-sharpness": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli, Remi Guyomarch",
                "description": "Unsharp masking (port from Mplayer)",
                "hierarchy": [
                    "frei0r-filter-sharpness",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Sharpness",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amount": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "size": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-sigmoidaltransfer": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Desaturates image and creates a particular look that could be called Stamp, Newspaper or Photocopy",
                "hierarchy": [
                    "frei0r-filter-sigmoidaltransfer",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "sigmoidaltransfer",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "brightness": {
                        "blurb": "Brightnesss of image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "sharpness": {
                        "blurb": "Sharpness of transfer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.85",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-sobel": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal (Drone)",
                "description": "Sobel filter",
                "hierarchy": [
                    "frei0r-filter-sobel",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Sobel",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-softglow": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Does softglow effect on highlights",
                "hierarchy": [
                    "frei0r-filter-softglow",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "softglow",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blur": {
                        "blurb": "Blur of the glow",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "blurblend": {
                        "blurb": "Blend mode used to blend highlight blur with input image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "brightness": {
                        "blurb": "Brightness of highlight areas",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "sharpness": {
                        "blurb": "Sharpness of highlight areas",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.85",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-sop-sat": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Simon A. Eugster (Granjow)",
                "description": "Slope/Offset/Power and Saturation color corrections according to the ASC CDL (Color Decision List)",
                "hierarchy": [
                    "frei0r-filter-sop-sat",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "SOP/Sat",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aoffset": {
                        "blurb": "Offset of the alpha component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "apower": {
                        "blurb": "Power (Gamma) of the alpha component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "aslope": {
                        "blurb": "Slope of the alpha component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "boffset": {
                        "blurb": "Offset of the blue color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "bpower": {
                        "blurb": "Power (Gamma) of the blue color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "bslope": {
                        "blurb": "Slope of the blue color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "goffset": {
                        "blurb": "Offset of the green color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "gpower": {
                        "blurb": "Power (Gamma) of the green color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "gslope": {
                        "blurb": "Slope of the green color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "roffset": {
                        "blurb": "Offset of the red color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "rpower": {
                        "blurb": "Power (Gamma) of the red color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "rslope": {
                        "blurb": "Slope of the red color component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.05",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "saturation": {
                        "blurb": "Overall saturation",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-spillsupress": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Remove green or blue spill light from subjects shot in front of green or blue screen",
                "hierarchy": [
                    "frei0r-filter-spillsupress",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "spillsupress",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "supresstype": {
                        "blurb": "Defines if green or blue screen spill suppress is applied",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-squareblur": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Drone",
                "description": "Variable-size square blur",
                "hierarchy": [
                    "frei0r-filter-squareblur",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Squareblur",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "kernel-size": {
                        "blurb": "The size of the kernel, as a proportion to its coverage of the image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-tehroxx0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Coma",
                "description": "Something videowall-ish",
                "hierarchy": [
                    "frei0r-filter-tehroxx0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "TehRoxx0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "interval": {
                        "blurb": "Changing speed of small blocks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-threelay0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Hedde Bosman",
                "description": "dynamic 3 level thresholding",
                "hierarchy": [
                    "frei0r-filter-threelay0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "threelay0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-threshold0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Thresholds a source image",
                "hierarchy": [
                    "frei0r-filter-threshold0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Threshold0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "threshold": {
                        "blurb": "The threshold",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-timeout-indicator": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Simon A. Eugster",
                "description": "Timeout indicators e.g. for slides.",
                "hierarchy": [
                    "frei0r-filter-timeout-indicator",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Timeout indicator",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-b": {
                        "blurb": "Indicator colour",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-g": {
                        "blurb": "Indicator colour",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-r": {
                        "blurb": "Indicator colour",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "time": {
                        "blurb": "Current time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "transparency": {
                        "blurb": "Indicator transparency",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-tint0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Maksim Golovkin",
                "description": "Tint a source image with specified color",
                "hierarchy": [
                    "frei0r-filter-tint0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Tint0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "map-black-to-b": {
                        "blurb": "The color to map source color with null luminance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "map-black-to-g": {
                        "blurb": "The color to map source color with null luminance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "map-black-to-r": {
                        "blurb": "The color to map source color with null luminance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "map-white-to-b": {
                        "blurb": "The color to map source color with full luminance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "map-white-to-g": {
                        "blurb": "The color to map source color with full luminance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "map-white-to-r": {
                        "blurb": "The color to map source color with full luminance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tint-amount": {
                        "blurb": "Amount of color",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-transparency": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Tunes the alpha channel.",
                "hierarchy": [
                    "frei0r-filter-transparency",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Transparency",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "transparency": {
                        "blurb": "The transparency value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-twolay0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "dynamic thresholding",
                "hierarchy": [
                    "frei0r-filter-twolay0r",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Twolay0r",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-filter-vectorscope": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Albert Frisch",
                "description": "Displays the vectorscope of the video-data",
                "hierarchy": [
                    "frei0r-filter-vectorscope",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Vectorscope",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "mix": {
                        "blurb": "The amount of source image mixed into background of display",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "overlay-sides": {
                        "blurb": "If false, the sides of image are shown without overlay",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-vertigo": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Fukuchi Kentarou",
                "description": "alpha blending with zoomed and rotated images",
                "hierarchy": [
                    "frei0r-filter-vertigo",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Vertigo",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "phaseincrement": {
                        "blurb": "Phase increment",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.02",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "zoomrate": {
                        "blurb": "Zoomrate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.202",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-vignette": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Simon A. Eugster (Granjow)",
                "description": "Lens vignetting effect, applies natural vignetting",
                "hierarchy": [
                    "frei0r-filter-vignette",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Vignette",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aspect": {
                        "blurb": "Aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "clearcenter": {
                        "blurb": "Size of the unaffected center",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "soft": {
                        "blurb": "Softness",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-white-balance": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Dan Dennedy",
                "description": "Adjust the white balance / color temperature",
                "hierarchy": [
                    "frei0r-filter-white-balance",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "White Balance",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "green-tint": {
                        "blurb": "Adjust the level of green.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.133333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "neutral-color-b": {
                        "blurb": "Choose a color from the source image that should be white.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "neutral-color-g": {
                        "blurb": "Choose a color from the source image that should be white.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "neutral-color-r": {
                        "blurb": "Choose a color from the source image that should be white.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-filter-white-balance--lms-space-": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Steinar H. Gunderson",
                "description": "Do simple color correction, in a physically meaningful way",
                "hierarchy": [
                    "frei0r-filter-white-balance--lms-space-",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "White Balance (LMS space)",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-temperature": {
                        "blurb": "Choose an output color temperature, if different from 6500 K.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.433333",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "neutral-color-b": {
                        "blurb": "Choose a color from the source image that should be white.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "neutral-color-g": {
                        "blurb": "Choose a color from the source image that should be white.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "neutral-color-r": {
                        "blurb": "Choose a color from the source image that should be white.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-addition": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] addition operation of the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-addition",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "addition",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-addition-alpha": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] addition_alpha operation of the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-addition-alpha",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "addition_alpha",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-alpha-injection": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Averages Input 1 and uses this as Alpha Channel on Input 2",
                "hierarchy": [
                    "frei0r-mixer-alpha-injection",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "Alpha Injection",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-alphaatop": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "the alpha ATOP operation",
                "hierarchy": [
                    "frei0r-mixer-alphaatop",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "alphaatop",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-alphain": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "the alpha IN operation",
                "hierarchy": [
                    "frei0r-mixer-alphain",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "alphain",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-alphaout": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "the alpha OUT operation",
                "hierarchy": [
                    "frei0r-mixer-alphaout",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "alphaout",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-alphaover": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "the alpha OVER operation",
                "hierarchy": [
                    "frei0r-mixer-alphaover",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "alphaover",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-alphaxor": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "the alpha XOR operation",
                "hierarchy": [
                    "frei0r-mixer-alphaxor",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "alphaxor",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-blend": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a blend operation between two sources",
                "hierarchy": [
                    "frei0r-mixer-blend",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "blend",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blend": {
                        "blurb": "blend factor",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-burn": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] dodge operation between the pixel sources, using the generalised algorithm:\nD = saturation of 255 or depletion of 0, of ((255 - A) * 256) / (B + 1)",
                "hierarchy": [
                    "frei0r-mixer-burn",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "burn",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-cairoaffineblend": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Composites second input on first input applying user-defined transformation, opacity and blend mode",
                "hierarchy": [
                    "frei0r-mixer-cairoaffineblend",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "cairoaffineblend",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "anchor-x": {
                        "blurb": "X position of rotation center within the second input",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "anchor-y": {
                        "blurb": "Y position of rotation center within the second input",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "blend-mode": {
                        "blurb": "Blend mode used to compose image. Accepted values: 'normal', 'add', 'saturate', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'colordodge', 'colorburn', 'hardlight', 'softlight', 'difference', 'exclusion', 'hslhue', 'hslsaturation', 'hslcolor', 'hslluminosity'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "normal",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "opacity": {
                        "blurb": "Opacity of second input",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "rotation": {
                        "blurb": "Rotation of second input, value interperted as range 0 - 360",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x": {
                        "blurb": "X position of second input, value interperted as range -2*width - 3*width",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-scale": {
                        "blurb": "X scale of second input, value interperted as range 0 - 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Y position of second input, value interperted as range -2*height - 3*height",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-scale": {
                        "blurb": "Y scale of second input, value interperted as range 0 - 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-cairoblend": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Janne Liljeblad",
                "description": "Composites second input on the first input with user-defined blend mode and opacity.",
                "hierarchy": [
                    "frei0r-mixer-cairoblend",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "cairoblend",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blend-mode": {
                        "blurb": "Blend mode used to compose image. Accepted values: 'normal', 'add', 'saturate', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'colordodge', 'colorburn', 'hardlight', 'softlight', 'difference', 'exclusion', 'hslhue', 'hslsaturation', 'hslcolor', 'hslluminosity'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "normal",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "opacity": {
                        "blurb": "Opacity of composited image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-color-only": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a conversion to color only of the source input1 using the hue and saturation values of input2.",
                "hierarchy": [
                    "frei0r-mixer-color-only",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "color_only",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-composition": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Composites Image 2 onto Image 1 according to its Alpha Channel",
                "hierarchy": [
                    "frei0r-mixer-composition",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "Composition",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-darken": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a darken operation between two sources (minimum value of both sources).",
                "hierarchy": [
                    "frei0r-mixer-darken",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "darken",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-difference": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] difference operation between the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-difference",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "difference",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-divide": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] divide operation between the pixel sources: input1 is the numerator, input2 the denominator",
                "hierarchy": [
                    "frei0r-mixer-divide",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "divide",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-dodge": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] dodge operation between the pixel sources, using the generalised algorithm:\nD = saturation of 255 or (A * 256) / (256 - B)",
                "hierarchy": [
                    "frei0r-mixer-dodge",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "dodge",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-grain-extract": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] grain-extract operation between the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-grain-extract",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "grain_extract",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-grain-merge": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] grain-merge operation between the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-grain-merge",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "grain_merge",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-hardlight": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] hardlight operation between the pixel sources",
                "hierarchy": [
                    "frei0r-mixer-hardlight",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "hardlight",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-hue": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a conversion to hue only of the source input1 using the hue of input2.",
                "hierarchy": [
                    "frei0r-mixer-hue",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "hue",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-lighten": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a lighten operation between two sources (maximum value of both sources).",
                "hierarchy": [
                    "frei0r-mixer-lighten",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "lighten",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-multiply": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] multiply operation between the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-multiply",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "multiply",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-overlay": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] overlay operation between the pixel sources, using the generalised algorithm:\nD =  A * (B + (2 * B) * (255 - A))",
                "hierarchy": [
                    "frei0r-mixer-overlay",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "overlay",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-rgb": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Averages each Input and uses each as R, G or B channel of the Output",
                "hierarchy": [
                    "frei0r-mixer-rgb",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "RGB",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_2": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-saturation": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a conversion to saturation only of the source input1 using the saturation level of input2.",
                "hierarchy": [
                    "frei0r-mixer-saturation",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "saturation",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-screen": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] screen operation between the pixel sources, using the generalised algorithm:\nD = 255 - (255 - A) * (255 - B)",
                "hierarchy": [
                    "frei0r-mixer-screen",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "screen",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-softlight": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] softlight operation between the pixel sources.",
                "hierarchy": [
                    "frei0r-mixer-softlight",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "softlight",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-subtract": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform an RGB[A] subtract operation of the pixel source input2 from input1.",
                "hierarchy": [
                    "frei0r-mixer-subtract",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "subtract",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-uv-map": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Richard Spindler",
                "description": "Uses Input 1 as UV Map to distort Input 2",
                "hierarchy": [
                    "frei0r-mixer-uv-map",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "UV Map",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-value": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jean-Sebastien Senecal",
                "description": "Perform a conversion to value only of the source input1 using the value of input2.",
                "hierarchy": [
                    "frei0r-mixer-value",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "value",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "frei0r-mixer-xfade0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "a simple xfader",
                "hierarchy": [
                    "frei0r-mixer-xfade0r",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "xfade0r",
                "pad-templates": {
                    "sink_0": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink_1": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "fader": {
                        "blurb": "the fader position",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-ising0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Gephex crew",
                "description": "Generates ising noise",
                "hierarchy": [
                    "frei0r-src-ising0r",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "Ising0r",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "border-growth": {
                        "blurb": "Border Growth",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "spontaneous-growth": {
                        "blurb": "Spontaneous Growth",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "temperature": {
                        "blurb": "Noise Temperature",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-lissajous0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "Generates Lissajous0r images",
                "hierarchy": [
                    "frei0r-src-lissajous0r",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "Lissajous0r",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ratiox": {
                        "blurb": "x-ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "ratioy": {
                        "blurb": "y-ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-nois0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "Generates white noise images",
                "hierarchy": [
                    "frei0r-src-nois0r",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "Nois0r",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "frei0r-src-onecol0r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Martin Bayer",
                "description": "image with just one color",
                "hierarchy": [
                    "frei0r-src-onecol0r",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "onecol0r",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-b": {
                        "blurb": "the color of the image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-g": {
                        "blurb": "the color of the image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "color-r": {
                        "blurb": "the color of the image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-partik0l": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jaromil",
                "description": "Particles generated on prime number sinusoidal blossoming",
                "hierarchy": [
                    "frei0r-src-partik0l",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "Partik0l",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "down": {
                        "blurb": "blossom on a lower prime number",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "up": {
                        "blurb": "blossom on a higher prime number",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-plasma": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Jaromil",
                "description": "Demo scene 8bit plasma",
                "hierarchy": [
                    "frei0r-src-plasma",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "Plasma",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "param-1-move": {
                        "blurb": " ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-1-speed": {
                        "blurb": " ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-2-move": {
                        "blurb": " ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-2-speed": {
                        "blurb": " ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-3-speed": {
                        "blurb": " ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "param-4-speed": {
                        "blurb": " ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-test-pat-b": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Generates test card lookalikes",
                "hierarchy": [
                    "frei0r-src-test-pat-b",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "test_pat_B",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aspect-type": {
                        "blurb": "7 choices, pixel aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "manual-aspect": {
                        "blurb": "Manual pixel aspect ratio (Aspect type 6)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "8 choices, select test pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-test-pat-c": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Generates cross sections of color spaces",
                "hierarchy": [
                    "frei0r-src-test-pat-c",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "test_pat_C",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color-space": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "cross-section": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "fullscreen": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "third-axis-value": {
                        "blurb": "",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-test-pat-g": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Generates geometry test pattern images",
                "hierarchy": [
                    "frei0r-src-test-pat-g",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "test_pat_G",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aspect-type": {
                        "blurb": "Pixel aspect ratio presets",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "manual-aspect": {
                        "blurb": "Manual pixel aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "negative": {
                        "blurb": "Polarity of image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "size-1": {
                        "blurb": "Size of major features",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "size-2": {
                        "blurb": "Size of minor features",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Type of test pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-test-pat-i": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Generates spatial impulse and step test patterns",
                "hierarchy": [
                    "frei0r-src-test-pat-i",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "test_pat_I",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "Amplitude (contrast) of the pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "channel": {
                        "blurb": "Into which color channel to draw",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "negative": {
                        "blurb": "Change polarity of impulse/step",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tilt": {
                        "blurb": "Angle of step function",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Type of test pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of impulse",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.040404",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-test-pat-l": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Generates linearity checking patterns",
                "hierarchy": [
                    "frei0r-src-test-pat-l",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "test_pat_L",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel": {
                        "blurb": "Into which color channel to draw",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Type of test pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "frei0r-src-test-pat-r": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>, Marko Cebokli",
                "description": "Generates resolution test patterns",
                "hierarchy": [
                    "frei0r-src-test-pat-r",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Src/Video",
                "long-name": "test_pat_R",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "Amplitude (contrast) of the pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "aspect-type": {
                        "blurb": "Pixel aspect ratio presets",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "channel": {
                        "blurb": "Into which color channel to draw",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "freq-1": {
                        "blurb": "Pattern 7 H frequency",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "freq-2": {
                        "blurb": "Pattern 7 V frequency",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "lin-p-swp": {
                        "blurb": "Use linear period sweep",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "manual-aspect": {
                        "blurb": "Manual pixel aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Type of test pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstfrei0r",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "gaudieffects": {
        "description": "Gaudi video effects.",
        "elements": {
            "burn": {
                "author": "Luis de Bethencourt <luis@debethencourt.com>",
                "description": "Burn adjusts the colors in the video signal.",
                "hierarchy": [
                    "GstBurn",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Burn",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adjustment": {
                        "blurb": "Adjustment parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "175",
                        "max": "256",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "chromium": {
                "author": "Luis de Bethencourt <luis@debethencourt.com>",
                "description": "Chromium breaks the colors of the video signal.",
                "hierarchy": [
                    "GstChromium",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Chromium",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "edge-a": {
                        "blurb": "First edge parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "256",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "edge-b": {
                        "blurb": "Second edge parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "256",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "dilate": {
                "author": "Luis de Bethencourt <luis@debethencourt.com>",
                "description": "Dilate copies the brightest pixel around.",
                "hierarchy": [
                    "GstDilate",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Dilate",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "erode": {
                        "blurb": "Erode parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "dodge": {
                "author": "Luis de Bethencourt <luis@debethencourt.com>",
                "description": "Dodge saturates the colors in the video signal.",
                "hierarchy": [
                    "GstDodge",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Dodge",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "exclusion": {
                "author": "Luis de Bethencourt <luis@debethencourt.com>",
                "description": "Exclusion exclodes the colors in the video signal.",
                "hierarchy": [
                    "GstExclusion",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Exclusion",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "factor": {
                        "blurb": "Exclusion factor parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "175",
                        "max": "175",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "gaussianblur": {
                "author": "Jan Schmidt <thaytan@noraisin.net>",
                "description": "Perform Gaussian blur/sharpen on a video",
                "hierarchy": [
                    "GstGaussianBlur",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "GstGaussianBlur",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: AYUV\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: AYUV\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "sigma": {
                        "blurb": "Sigma value for gaussian blur (negative for sharpen)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1.2",
                        "max": "20",
                        "min": "-20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "solarize": {
                "author": "Luis de Bethencourt <luis@debethencourt.com>",
                "description": "Solarize tunable inverse in the video signal.",
                "hierarchy": [
                    "GstSolarize",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Solarize",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, RGBx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "end": {
                        "blurb": "End parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "185",
                        "max": "256",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "start": {
                        "blurb": "Start parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "256",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "threshold": {
                        "blurb": "Threshold parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "127",
                        "max": "256",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstgaudieffects",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "gdp": {
        "description": "Payload/depayload GDP packets",
        "elements": {
            "gdpdepay": {
                "author": "Thomas Vander Stichele <thomas at apestaart dot org>",
                "description": "Depayloads GStreamer Data Protocol buffers",
                "hierarchy": [
                    "GstGDPDepay",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "GDP/Depayloader",
                "long-name": "GDP Depayloader",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-gdp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ts-offset": {
                        "blurb": "Timestamp Offset",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "gdppay": {
                "author": "Thomas Vander Stichele <thomas at apestaart dot org>",
                "description": "Payloads GStreamer Data Protocol buffers",
                "hierarchy": [
                    "GstGDPPay",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "GDP/Payloader",
                "long-name": "GDP Payloader",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-gdp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "crc-header": {
                        "blurb": "Calculate and store a CRC checksum on the header",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "crc-payload": {
                        "blurb": "Calculate and store a CRC checksum on the payload",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstgdp",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "geometrictransform": {
        "description": "Various geometric image transform elements",
        "elements": {
            "bulge": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Adds a protuberance in the center point",
                "hierarchy": [
                    "GstBulge",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "bulge",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "zoom": {
                        "blurb": "Zoom of the bulge effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "circle": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Warps the picture into an arc shaped form",
                "hierarchy": [
                    "GstCircle",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "circle",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "angle": {
                        "blurb": "Angle at which the arc starts in radians",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Height of the arc",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "spread-angle": {
                        "blurb": "Length of the arc in radians",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3.14159",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "diffuse": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Diffuses the image by moving its pixels in random directions",
                "hierarchy": [
                    "GstDiffuse",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "diffuse",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "scale": {
                        "blurb": "Scale of the texture",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "1.79769e+308",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "fisheye": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Simulate a fisheye lens by zooming on the center of the image and compressing the edges",
                "hierarchy": [
                    "GstFisheye",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "fisheye",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "kaleidoscope": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies 'kaleidoscope' geometric transform to the image",
                "hierarchy": [
                    "GstKaleidoscope",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "kaleidoscope",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "angle": {
                        "blurb": "primary angle in radians of the kaleidoscope effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "angle2": {
                        "blurb": "secondary angle in radians of the kaleidoscope effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "sides": {
                        "blurb": "Number of sides of the kaleidoscope",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3",
                        "max": "2147483647",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "marble": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies a marbling effect to the image",
                "hierarchy": [
                    "GstMarble",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "marble",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amount": {
                        "blurb": "Amount of effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "turbulence": {
                        "blurb": "Turbulence of the effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-scale": {
                        "blurb": "X scale of the texture",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-scale": {
                        "blurb": "Y scale of the texture",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "mirror": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Split the image into two halves and reflect one over each other",
                "hierarchy": [
                    "GstMirror",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "mirror",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "mode": {
                        "blurb": "How to split the video frame and which side reflect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMirrorMode",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "perspective": {
                "author": "Antonio Ospite <ospite@studenti.unina.it>",
                "description": "Apply a 2D perspective transform",
                "hierarchy": [
                    "GstPerspective",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "perspective",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "matrix": {
                        "blurb": "Matrix of dimension 3x3 to use in the 2D transform, passed as an array of 9 elements in row-major order",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GValueArray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "pinch": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies 'pinch' geometric transform to the image",
                "hierarchy": [
                    "GstPinch",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "pinch",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "intensity": {
                        "blurb": "intensity of the pinch effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "rotate": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Rotates the picture by an arbitrary angle",
                "hierarchy": [
                    "GstRotate",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "rotate",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "angle": {
                        "blurb": "Angle by which the picture is rotated, in radians",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "sphere": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies 'sphere' geometric transform to the image",
                "hierarchy": [
                    "GstSphere",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "sphere",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "refraction": {
                        "blurb": "refraction index",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1.5",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "square": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Distort center part of the image into a square",
                "hierarchy": [
                    "GstSquare",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "square",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "height": {
                        "blurb": "Height of the square, relative to the frame height",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of the square, relative to the frame width",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Zoom amount in the center region",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "stretch": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Stretch the image in a circle around the center point",
                "hierarchy": [
                    "GstStretch",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "stretch",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "intensity": {
                        "blurb": "Intensity of the stretch effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "tunnel": {
                "author": "Filippo Argiolas <filippo.argiolas@gmail.com>",
                "description": "Light tunnel effect",
                "hierarchy": [
                    "GstTunnel",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "tunnel",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "twirl": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Twists the image from the center out",
                "hierarchy": [
                    "GstTwirl",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "twirl",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "angle": {
                        "blurb": "This is the angle in radians by which pixels at the nearest edge of the image will move",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3.14159",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "waterripple": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Creates a water ripple effect on the image",
                "hierarchy": [
                    "GstWaterRipple",
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "waterripple",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB, BGR, BGRA, BGRx, RGB, RGBA, RGBx, AYUV, xBGR, xRGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "amplitude",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "phase": {
                        "blurb": "phase",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "wavelength": {
                        "blurb": "wavelength",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "1.79769e+308",
                        "min": "-1.79769e+308",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstgeometrictransform",
        "license": "LGPL",
        "other-types": {
            "GstCircleGeometricTransform": {
                "hierarchy": [
                    "GstCircleGeometricTransform",
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "radius": {
                        "blurb": "radius of the circle_geometric_transform effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.35",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-center": {
                        "blurb": "X axis center of the circle_geometric_transform effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-center": {
                        "blurb": "Y axis center of the circle_geometric_transform effect",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                }
            },
            "GstGeometricTransform": {
                "hierarchy": [
                    "GstGeometricTransform",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "off-edge-pixels": {
                        "blurb": "What to do with off edge pixels",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "ignore (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstGeometricTransformOffEdgesPixelsMethod",
                        "writable": true
                    }
                }
            },
            "GstGeometricTransformOffEdgesPixelsMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Ignore",
                        "name": "ignore",
                        "value": "0"
                    },
                    {
                        "desc": "Clamp",
                        "name": "clamp",
                        "value": "1"
                    },
                    {
                        "desc": "Wrap",
                        "name": "wrap",
                        "value": "2"
                    }
                ]
            },
            "GstMirrorMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Split horizontally and reflect left into right",
                        "name": "left",
                        "value": "0"
                    },
                    {
                        "desc": "Split horizontally and reflect right into left",
                        "name": "right",
                        "value": "1"
                    },
                    {
                        "desc": "Split vertically and reflect top into bottom",
                        "name": "top",
                        "value": "2"
                    },
                    {
                        "desc": "Split vertically and reflect bottom into top",
                        "name": "bottom",
                        "value": "3"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "gme": {
        "description": "GME Audio Decoder",
        "elements": {
            "gmedec": {
                "author": "Chris Lee <clee@kde.org>, Brian Koropoff <bkoropoff@gmail.com>, Michael Pyne <mpyne@kde.org>, Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Uses libgme to emulate a gaming console sound processors",
                "hierarchy": [
                    "GstGmeDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Audio/Decoder",
                "long-name": "Gaming console music file decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-ay:\naudio/x-gbs:\naudio/x-gym:\naudio/x-hes:\naudio/x-kss:\naudio/x-nsf:\naudio/x-sap:\naudio/x-spc:\naudio/x-vgm:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: 32000\n       channels: 2\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstgme",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "gsm": {
        "description": "GSM encoder/decoder",
        "elements": {
            "gsmdec": {
                "author": "Philippe Khalaf <burger@speedy.org>",
                "description": "Decodes GSM encoded audio",
                "hierarchy": [
                    "GstGSMDec",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "GSM audio decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-gsm:\n           rate: 8000\n       channels: 1\naudio/ms-gsm:\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "gsmenc": {
                "author": "Philippe Khalaf <burger@speedy.org>",
                "description": "Encodes GSM audio",
                "hierarchy": [
                    "GstGSMEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "GSM audio encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: 8000\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-gsm:\n           rate: 8000\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            }
        },
        "filename": "gstgsm",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "hls": {
        "description": "HTTP Live Streaming (HLS)",
        "elements": {
            "hlsdemux": {
                "author": "Marc-Andre Lureau <marcandre.lureau@gmail.com>\nAndoni Morales Alastruey <ylatuya@gmail.com>",
                "description": "HTTP Live Streaming demuxer",
                "hierarchy": [
                    "GstHLSDemux",
                    "GstAdaptiveDemux",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Codec/Demuxer/Adaptive",
                "long-name": "HLS Demuxer",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-hls:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src_%%u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {},
                "rank": "primary",
                "signals": {}
            },
            "hlssink": {
                "author": "Alessandro Decina <alessandro.d@gmail.com>",
                "description": "HTTP Live Streaming sink",
                "hierarchy": [
                    "GstHlsSink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Sink",
                "long-name": "HTTP Live Streaming sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "location": {
                        "blurb": "Location of the file to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "segment%%05d.ts",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "max-files": {
                        "blurb": "Maximum number of files to keep on disk. Once the maximum is reached,old files start to be deleted to make room for new ones.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "playlist-length": {
                        "blurb": "Length of HLS playlist. To allow players to conform to section 6.3.3 of the HLS specification, this should be at least 3. If set to 0, the playlist will be infinite.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "playlist-location": {
                        "blurb": "Location of the playlist to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "playlist.m3u8",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "playlist-root": {
                        "blurb": "Location of the playlist to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "target-duration": {
                        "blurb": "The target duration in seconds of a segment/file. (0 - disabled, useful for management of segment duration by the streaming server)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "15",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "hlssink2": {
                "author": "Alessandro Decina <alessandro.d@gmail.com>, Sebastian Dröge <sebastian@centricular.com>",
                "description": "HTTP Live Streaming sink",
                "hierarchy": [
                    "GstHlsSink2",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Sink",
                "long-name": "HTTP Live Streaming sink",
                "pad-templates": {
                    "audio": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "video": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    }
                },
                "properties": {
                    "location": {
                        "blurb": "Location of the file to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "segment%%05d.ts",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "max-files": {
                        "blurb": "Maximum number of files to keep on disk. Once the maximum is reached,old files start to be deleted to make room for new ones.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "playlist-length": {
                        "blurb": "Length of HLS playlist. To allow players to conform to section 6.3.3 of the HLS specification, this should be at least 3. If set to 0, the playlist will be infinite.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "playlist-location": {
                        "blurb": "Location of the playlist to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "playlist.m3u8",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "playlist-root": {
                        "blurb": "Location of the playlist to write",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "send-keyframe-requests": {
                        "blurb": "Send keyframe requests to ensure correct fragmentation. If this is disabled then the input must have keyframes in regular intervals",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "target-duration": {
                        "blurb": "The target duration in seconds of a segment/file. (0 - disabled, useful for management of segment duration by the streaming server)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "15",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "delete-fragment": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "get-fragment-stream": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "GOutputStream",
                        "when": "last"
                    },
                    "get-playlist-stream": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "GOutputStream",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gsthls",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "id3tag": {
        "description": "ID3 v1 and v2 muxing plugin",
        "elements": {
            "id3mux": {
                "author": "Michael Smith <msmith@songbirdnest.com>, Tim-Philipp Müller <tim centricular net>",
                "description": "Adds an ID3v2 header and ID3v1 footer to a file",
                "hierarchy": [
                    "GstId3Mux",
                    "GstTagMux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstTagSetter"
                ],
                "klass": "Formatter/Metadata",
                "long-name": "ID3 v1 and v2 Muxer",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-id3:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "v2-version": {
                        "blurb": "Set version (3 for id3v2.3, 4 for id3v2.4) of id3v2 tags",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "4",
                        "min": "3",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "write-v1": {
                        "blurb": "Write an id3v1 tag at the end of the file",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "write-v2": {
                        "blurb": "Write an id3v2 tag at the start of the file",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstid3tag",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "inter": {
        "description": "plugin for inter-pipeline communication",
        "elements": {
            "interaudiosink": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Virtual audio sink for internal process communication",
                "hierarchy": [
                    "GstInterAudioSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Audio",
                "long-name": "Internal audio sink",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel": {
                        "blurb": "Channel name to match inter src and sink elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "interaudiosrc": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Virtual audio source for internal process communication",
                "hierarchy": [
                    "GstInterAudioSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio",
                "long-name": "Internal audio source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "buffer-time": {
                        "blurb": "Size of audio buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000000",
                        "max": "18446744073709551615",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "channel": {
                        "blurb": "Channel name to match inter src and sink elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "latency-time": {
                        "blurb": "Latency as reported by the source",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100000000",
                        "max": "18446744073709551615",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "period-time": {
                        "blurb": "The minimum amount of data to read in each iteration",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "25000000",
                        "max": "18446744073709551615",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "intersubsink": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Virtual subtitle sink for internal process communication",
                "hierarchy": [
                    "GstInterSubSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Subtitle",
                "long-name": "Internal subtitle sink",
                "pad-templates": {
                    "sink": {
                        "caps": "text/plain:\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel": {
                        "blurb": "Channel name to match inter src and sink elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "intersubsrc": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Virtual subtitle source for internal process communication",
                "hierarchy": [
                    "GstInterSubSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Subtitle",
                "long-name": "Internal subtitle source",
                "pad-templates": {
                    "src": {
                        "caps": "application/unknown:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel": {
                        "blurb": "Channel name to match inter src and sink elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "intervideosink": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Virtual video sink for internal process communication",
                "hierarchy": [
                    "GstInterVideoSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Video",
                "long-name": "Internal video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel": {
                        "blurb": "Channel name to match inter src and sink elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "intervideosrc": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Virtual video source for internal process communication",
                "hierarchy": [
                    "GstInterVideoSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "Internal video source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel": {
                        "blurb": "Channel name to match inter src and sink elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Timeout after which to start outputting black frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstinter",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "interlace": {
        "description": "Create an interlaced video stream",
        "elements": {
            "interlace": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Creates an interlaced video from progressive frames",
                "hierarchy": [
                    "GstInterlace",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Interlace filter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { AYUV, YUY2, UYVY, I420, YV12, Y42B, Y444, NV12, NV21 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { AYUV, YUY2, UYVY, I420, YV12, Y42B, Y444, NV12, NV21 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n interlace-mode: { (string)interleaved, (string)mixed }\n\nvideo/x-raw(format:Interlaced):\n         format: { AYUV, YUY2, UYVY, I420, YV12, Y42B, Y444, NV12, NV21 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n interlace-mode: alternate\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "allow-rff": {
                        "blurb": "Allow generation of buffers with RFF flag set, i.e., duration of 3 fields",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "field-pattern": {
                        "blurb": "The output field pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2:3 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstInterlacePattern",
                        "writable": true
                    },
                    "pattern-offset": {
                        "blurb": "The initial field pattern offset. Counts from 0.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "12",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "top-field-first": {
                        "blurb": "Interlaced stream should be top field first",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstinterlace",
        "license": "LGPL",
        "other-types": {
            "GstInterlacePattern": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "1:1 (e.g. 60p -> 60i)",
                        "name": "1:1",
                        "value": "0"
                    },
                    {
                        "desc": "2:2 (e.g. 30p -> 60i)",
                        "name": "2:2",
                        "value": "1"
                    },
                    {
                        "desc": "2:3 (e.g. 24p -> 60i telecine)",
                        "name": "2:3",
                        "value": "2"
                    },
                    {
                        "desc": "2:3:3:2 (e.g. 24p -> 60i telecine)",
                        "name": "2:3:3:2",
                        "value": "3"
                    },
                    {
                        "desc": "Euro 2-11:3 (e.g. 24p -> 50i telecine)",
                        "name": "2-11:3",
                        "value": "4"
                    },
                    {
                        "desc": "3:4-3 (e.g. 16p -> 60i telecine)",
                        "name": "3:4-3",
                        "value": "5"
                    },
                    {
                        "desc": "3-7:4 (e.g. 16p -> 50i telecine)",
                        "name": "3-7:4",
                        "value": "6"
                    },
                    {
                        "desc": "3:3:4 (e.g. 18p -> 60i telecine)",
                        "name": "3:3:4",
                        "value": "7"
                    },
                    {
                        "desc": "3:3 (e.g. 20p -> 60i telecine)",
                        "name": "3:3",
                        "value": "8"
                    },
                    {
                        "desc": "3:2-4 (e.g. 27.5p -> 60i telecine)",
                        "name": "3:2-4",
                        "value": "9"
                    },
                    {
                        "desc": "1:2-4 (e.g. 27.5p -> 50i telecine)",
                        "name": "1:2-4",
                        "value": "10"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "ipcpipeline": {
        "description": "plugin for inter-process pipeline communication",
        "elements": {
            "ipcpipelinesink": {
                "author": "Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>",
                "description": "Allows splitting and continuing a pipeline in another process",
                "hierarchy": [
                    "GstIpcPipelineSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink",
                "long-name": "Inter-process Pipeline Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ack-time": {
                        "blurb": "Maximum time to wait for a response to a message",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "fdin": {
                        "blurb": "File descriptor to received data from",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "fdout": {
                        "blurb": "File descriptor to send data through",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "read-chunk-size": {
                        "blurb": "Read chunk size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "16777216",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "disconnect": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "ipcpipelinesrc": {
                "author": "Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>",
                "description": "Continues a split pipeline from another process",
                "hierarchy": [
                    "GstIpcPipelineSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source",
                "long-name": "Inter-process Pipeline Source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ack-time": {
                        "blurb": "Maximum time to wait for a response to a message",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "fdin": {
                        "blurb": "File descriptor to read data from",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "fdout": {
                        "blurb": "File descriptor to write data through",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "read-chunk-size": {
                        "blurb": "Read chunk size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "65536",
                        "max": "16777216",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "disconnect": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "forward-message": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstMessage"
                            }
                        ],
                        "return-type": "gboolean",
                        "when": "last"
                    }
                }
            },
            "ipcslavepipeline": {
                "author": "Vincent Penquerc'h <vincent.penquerch@collabora.co.uk",
                "description": "Contains the slave part of an inter-process pipeline",
                "hierarchy": [
                    "GstIpcSlavePipeline",
                    "GstPipeline",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin/Slave",
                "long-name": "Inter-process slave pipeline",
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstipcpipeline",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "iqa": {
        "description": "Iqa",
        "elements": {
            "iqa": {
                "author": "Mathieu Duponchelle <mathieu.duponchelle@collabora.co.uk>",
                "description": "Provides various Image Quality Assessment metrics",
                "hierarchy": [
                    "GstIqa",
                    "GstVideoAggregator",
                    "GstAggregator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Filter/Analyzer/Video",
                "long-name": "Iqa",
                "pad-templates": {
                    "sink_%%u": {
                        "caps": "video/x-raw:\n         format: { AYUV, BGRA, ARGB, RGBA, ABGR, Y444, Y42B, YUY2, UYVY, YVYU, I420, YV12, NV12, NV21, Y41B, RGB, BGR, xRGB, xBGR, RGBx, BGRx }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "request",
                        "type": "GstVideoAggregatorConvertPad"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { RGBA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always",
                        "type": "GstAggregatorPad"
                    }
                },
                "properties": {
                    "do-dssim": {
                        "blurb": "Run structural similarity checks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dssim-error-threshold": {
                        "blurb": "dssim value over which the element will post an error message on the bus. A value < 0.0 means 'disabled'.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Controls the frame comparison mode.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "(none)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstIqaMode",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstiqa",
        "license": "LGPL",
        "other-types": {
            "GstIqaMode": {
                "kind": "flags",
                "values": [
                    {
                        "desc": "Strict comparison of frames.",
                        "name": "strict",
                        "value": "0x00000002"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "ivfparse": {
        "description": "IVF parser",
        "elements": {
            "ivfparse": {
                "author": "Philip Jägenstedt <philipj@opera.com>",
                "description": "Demuxes a IVF stream",
                "hierarchy": [
                    "GstIvfParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer",
                "long-name": "IVF parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-ivf:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            }
        },
        "filename": "gstivfparse",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "ivtc": {
        "description": "Inverse Telecine",
        "elements": {
            "combdetect": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Detect combing artifacts in video stream",
                "hierarchy": [
                    "GstCombDetect",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Filter",
                "long-name": "Comb Detect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B }\n          width: [ 1, 2048 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B }\n          width: [ 1, 2048 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "ivtc": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Inverse Telecine Filter",
                "hierarchy": [
                    "GstIvtc",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Filter",
                "long-name": "Inverse Telecine",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B }\n          width: [ 1, 2048 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B }\n          width: [ 1, 2048 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstivtc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "jp2kdecimator": {
        "description": "JPEG2000 decimator",
        "elements": {
            "jp2kdecimator": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Removes information from JPEG2000 streams without recompression",
                "hierarchy": [
                    "GstJP2kDecimator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Image",
                "long-name": "JPEG2000 decimator",
                "pad-templates": {
                    "sink": {
                        "caps": "image/x-jpc:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/x-jpc:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-decomposition-levels": {
                        "blurb": "Maximum number of decomposition levels to keep (-1 == all)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "32",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "max-layers": {
                        "blurb": "Maximum number of layers to keep (0 == all)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstjp2kdecimator",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "jpegformat": {
        "description": "JPEG interchange format plugin",
        "elements": {
            "jifmux": {
                "author": "Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>",
                "description": "Remuxes JPEG images with markers and tags",
                "hierarchy": [
                    "GstJifMux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstTagSetter",
                    "GstTagXmpWriter"
                ],
                "klass": "Video/Formatter",
                "long-name": "JPEG stream muxer",
                "pad-templates": {
                    "sink": {
                        "caps": "image/jpeg:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/jpeg:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "secondary"
            },
            "jpegparse": {
                "author": "Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>",
                "description": "Parse JPEG images into single-frame buffers",
                "hierarchy": [
                    "GstJpegParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Parser",
                "long-name": "JPEG stream parser",
                "pad-templates": {
                    "sink": {
                        "caps": "image/jpeg:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/jpeg:\n         format: { I420, Y41B, UYVY, YV12 }\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         parsed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstjpegformat",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "kate": {
        "description": "Kate plugin",
        "elements": {
            "katedec": {
                "author": "Vincent Penquerc'h <ogg.k.ogg.k@googlemail.com>",
                "description": "Decodes Kate text streams",
                "hierarchy": [
                    "GstKateDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Subtitle",
                "long-name": "Kate stream text decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "subtitle/x-kate:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "text/x-raw:\n         format: { pango-markup, utf8 }\nsubpicture/x-dvd:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "category": {
                        "blurb": "The category of the stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "language": {
                        "blurb": "The language of the stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "original-canvas-height": {
                        "blurb": "The canvas height this stream was authored for (0 is unspecified)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "original-canvas-width": {
                        "blurb": "The canvas width this stream was authored for",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "remove-markup": {
                        "blurb": "Remove markup from decoded text ?",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "kateenc": {
                "author": "Vincent Penquerc'h <ogg.k.ogg.k@googlemail.com>",
                "description": "Encodes Kate streams from text or subpictures",
                "hierarchy": [
                    "GstKateEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstTagSetter"
                ],
                "klass": "Codec/Encoder/Subtitle",
                "long-name": "Kate stream encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "text/x-raw:\n         format: { pango-markup, utf8 }\nsubpicture/x-dvd:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "subtitle/x-kate:\napplication/x-kate:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "category": {
                        "blurb": "The category of the stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "default-spu-duration": {
                        "blurb": "The assumed max duration (in seconds) of SPUs with no duration specified",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1.5",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "granule-rate-denominator": {
                        "blurb": "The denominator of the granule rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "granule-rate-numerator": {
                        "blurb": "The numerator of the granule rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "granule-shift": {
                        "blurb": "The granule shift",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "32",
                        "max": "64",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "keepalive-min-time": {
                        "blurb": "Minimum time to emit keepalive packets (0 disables keepalive packets)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2.5",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "language": {
                        "blurb": "The language of the stream (e.g. \"fr\" or \"fr_FR\" for French)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "original-canvas-height": {
                        "blurb": "The height of the canvas this stream was authored for (0 is unspecified)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "original-canvas-width": {
                        "blurb": "The width of the canvas this stream was authored for (0 is unspecified)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "kateparse": {
                "author": "Vincent Penquerc'h <ogg.k.ogg.k at googlemail dot com>",
                "description": "parse raw kate streams",
                "hierarchy": [
                    "GstKateParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Subtitle",
                "long-name": "Kate stream parser",
                "pad-templates": {
                    "sink": {
                        "caps": "subtitle/x-kate:\napplication/x-kate:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "subtitle/x-kate:\napplication/x-kate:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "katetag": {
                "author": "Vincent Penquerc'h <ogg.k.ogg.k@googlemail.com>",
                "description": "Retags kate streams",
                "hierarchy": [
                    "GstKateTag",
                    "GstKateParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstTagSetter"
                ],
                "klass": "Formatter/Metadata",
                "long-name": "Kate stream tagger",
                "pad-templates": {
                    "sink": {
                        "caps": "subtitle/x-kate:\napplication/x-kate:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "subtitle/x-kate:\napplication/x-kate:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "category": {
                        "blurb": "Set the category of the stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "language": {
                        "blurb": "Set the language of the stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "original-canvas-height": {
                        "blurb": "Set the height of the canvas this stream was authored for (0 is unspecified)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "original-canvas-width": {
                        "blurb": "Set the width of the canvas this stream was authored for (0 is unspecified)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstkate",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "kms": {
        "description": "Video sink using the Linux kernel mode setting API",
        "elements": {
            "kmssink": {
                "author": "Víctor Jáquez <vjaquez@igalia.com>",
                "description": "Video sink using the Linux kernel mode setting API",
                "hierarchy": [
                    "GstKMSSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstVideoOverlay"
                ],
                "klass": "Sink/Video",
                "long-name": "KMS video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRA, BGRx, RGBA, RGBx, RGB, BGR, P010_10LE, P016_LE, UYVY, YUY2, YVYU, I420, YV12, Y42B, NV12, NV21, NV16 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bus-id": {
                        "blurb": "DRM bus ID",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "can-scale": {
                        "blurb": "User can tell kmssink if the driver can support scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "connector-id": {
                        "blurb": "DRM connector id",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "connector-properties": {
                        "blurb": "Additional properties for the connector",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": true
                    },
                    "display-height": {
                        "blurb": "Height of the display surface in pixels",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "display-width": {
                        "blurb": "Width of the display surface in pixels",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "driver-name": {
                        "blurb": "DRM device driver name",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "force-modesetting": {
                        "blurb": "When enabled, the sink try to configure the display mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "plane-id": {
                        "blurb": "DRM plane id",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "plane-properties": {
                        "blurb": "Additional properties for the plane",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": true
                    },
                    "render-rectangle": {
                        "blurb": "The render rectangle ('<x, y, width, height>')",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": false,
                        "type": "GstValueArray",
                        "writable": true
                    },
                    "restore-crtc": {
                        "blurb": "When enabled and CRTC was set with a new mode, previous CRTC mode willbe restored when going to NULL state.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstkms",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "ladspa": {
        "description": "LADSPA plugin",
        "elements": {
            "ladspa-amp-so-amp-mono": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Mono Amplifier",
                "hierarchy": [
                    "ladspa-amp-so-amp-mono",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Mono Amplifier",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "gain": {
                        "blurb": "Gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspa-amp-so-amp-stereo": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Stereo Amplifier",
                "hierarchy": [
                    "ladspa-amp-so-amp-stereo",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Stereo Amplifier",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "gain": {
                        "blurb": "Gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspa-delay-so-delay-5s": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Simple Delay Line",
                "hierarchy": [
                    "ladspa-delay-so-delay-5s",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Simple Delay Line",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "delay": {
                        "blurb": "Delay (Seconds)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "5",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry-wet-balance": {
                        "blurb": "Dry/Wet Balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspa-filter-so-hpf": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Simple High Pass Filter",
                "hierarchy": [
                    "ladspa-filter-so-hpf",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Simple High Pass Filter",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cutoff-frequency": {
                        "blurb": "Cutoff Frequency (Hz)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "440",
                        "max": "22050",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspa-filter-so-lpf": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Simple Low Pass Filter",
                "hierarchy": [
                    "ladspa-filter-so-lpf",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Simple Low Pass Filter",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cutoff-frequency": {
                        "blurb": "Cutoff Frequency (Hz)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "440",
                        "max": "22050",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspa-sine-so-sine-faaa": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Sine Oscillator (Freq:audio, Amp:audio)",
                "hierarchy": [
                    "ladspa-sine-so-sine-faaa",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Sine Oscillator (Freq:audio, Amp:audio)",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "ladspa-sine-so-sine-faac": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Sine Oscillator (Freq:audio, Amp:control)",
                "hierarchy": [
                    "ladspa-sine-so-sine-faac",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Sine Oscillator (Freq:audio, Amp:control)",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "Amplitude",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspa-sine-so-sine-fcaa": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Sine Oscillator (Freq:control, Amp:audio)",
                "hierarchy": [
                    "ladspa-sine-so-sine-fcaa",
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio/LADSPA",
                "long-name": "Sine Oscillator (Freq:control, Amp:audio)",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "frequency": {
                        "blurb": "Frequency (Hz)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "440",
                        "max": "22050",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspasrc-noise-so-noise-white": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "White Noise Source",
                "hierarchy": [
                    "ladspasrc-noise-so-noise-white",
                    "GstLADSPASource",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio/LADSPA",
                "long-name": "White Noise Source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "Amplitude",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "can-activate-pull": {
                        "blurb": "Can activate in pull mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "can-activate-push": {
                        "blurb": "Can activate in push mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "is-live": {
                        "blurb": "Whether to act as a live source",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "samplesperbuffer": {
                        "blurb": "Number of samples in each outgoing buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "timestamp-offset": {
                        "blurb": "An offset added to timestamps set on buffers (in ns)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ladspasrc-sine-so-sine-fcac": {
                "author": "Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com>",
                "description": "Sine Oscillator (Freq:control, Amp:control)",
                "hierarchy": [
                    "ladspasrc-sine-so-sine-fcac",
                    "GstLADSPASource",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio/LADSPA",
                "long-name": "Sine Oscillator (Freq:control, Amp:control)",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "amplitude": {
                        "blurb": "Amplitude",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "can-activate-pull": {
                        "blurb": "Can activate in pull mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "can-activate-push": {
                        "blurb": "Can activate in push mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "frequency": {
                        "blurb": "Frequency (Hz)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "440",
                        "max": "22050",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "is-live": {
                        "blurb": "Whether to act as a live source",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "samplesperbuffer": {
                        "blurb": "Number of samples in each outgoing buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "timestamp-offset": {
                        "blurb": "An offset added to timestamps set on buffers (in ns)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstladspa",
        "license": "LGPL",
        "other-types": {
            "GstLADSPAFilter": {
                "hierarchy": [
                    "GstLADSPAFilter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            },
            "GstLADSPASource": {
                "hierarchy": [
                    "GstLADSPASource",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "legacyrawparse": {
        "description": "Parses byte streams into raw frames",
        "elements": {
            "audioparse": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Converts stream into audio frames (deprecated: use rawaudioparse instead)",
                "hierarchy": [
                    "GstAudioParse",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Filter/Audio",
                "long-name": "Audio Parse",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n         layout: { (string)interleaved, (string)non-interleaved }\naudio/x-unaligned-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n         layout: { (string)interleaved, (string)non-interleaved }\naudio/x-alaw:\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-mulaw:\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel-positions": {
                        "blurb": "Channel positions used on the output",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GValueArray",
                        "writable": true
                    },
                    "channels": {
                        "blurb": "Number of channels in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "format": {
                        "blurb": "Format of audio samples in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "raw (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAudioParseFormat",
                        "writable": true
                    },
                    "interleaved": {
                        "blurb": "True if audio has interleaved layout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rate": {
                        "blurb": "Rate of audio samples in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "44100",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "raw-format": {
                        "blurb": "Format of audio samples in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "s16le (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAudioFormat",
                        "writable": true
                    },
                    "use-sink-caps": {
                        "blurb": "Use the sink caps for the format, only performing timestamping",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "videoparse": {
                "author": "David Schleef <ds@schleef.org>, Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Converts stream into video frames (deprecated: use rawvideoparse instead)",
                "hierarchy": [
                    "GstVideoParse",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Filter/Video",
                "long-name": "Video Parse",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "format": {
                        "blurb": "Format of images in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "i420 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoFormat",
                        "writable": true
                    },
                    "framerate": {
                        "blurb": "Frame rate of images in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "25/1",
                        "max": "2147483647/1",
                        "min": "0/1",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFraction",
                        "writable": true
                    },
                    "framesize": {
                        "blurb": "Size of an image in raw stream (0: default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Height of images in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "240",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "interlaced": {
                        "blurb": "True if video is interlaced",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "offsets": {
                        "blurb": "Offset of each planes in bytes using string format: 'o0,o1,o2,o3'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0,76800,96000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "pixel-aspect-ratio": {
                        "blurb": "Pixel aspect ratio of images in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1/1",
                        "max": "100/1",
                        "min": "1/100",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFraction",
                        "writable": true
                    },
                    "strides": {
                        "blurb": "Stride of each planes in bytes using string format: 's0,s1,s2,s3'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "320,160,160",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "top-field-first": {
                        "blurb": "True if top field is earlier than bottom field",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of images in raw stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "320",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstlegacyrawparse",
        "license": "LGPL",
        "other-types": {
            "GstAudioParseFormat": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Raw",
                        "name": "raw",
                        "value": "0"
                    },
                    {
                        "desc": "A-Law",
                        "name": "alaw",
                        "value": "2"
                    },
                    {
                        "desc": "µ-Law",
                        "name": "mulaw",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "lv2": {
        "description": "All LV2 plugins",
        "elements": {
            "lsp-plug-in-plugins-lv2-comp-delay-mono": {
                "author": "LSP LV2",
                "description": "LSP Delay Compensator Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-comp-delay-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Delay",
                "long-name": "LSP Delay Compensator Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cm": {
                        "blurb": "Centimeters",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "d-d": {
                        "blurb": "Delay distance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "50000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "d-s": {
                        "blurb": "Delay samples",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "d-t": {
                        "blurb": "Delay time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "m": {
                        "blurb": "Meters",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Samples (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-comp-delay-monomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ramp": {
                        "blurb": "Ramping",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "samp": {
                        "blurb": "Samples",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "t": {
                        "blurb": "Temperature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "60",
                        "min": "-60",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "time": {
                        "blurb": "Time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-comp-delay-stereo": {
                "author": "LSP LV2",
                "description": "LSP Delay Compensator Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-comp-delay-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Delay",
                "long-name": "LSP Delay Compensator Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cm": {
                        "blurb": "Centimeters",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "d-d": {
                        "blurb": "Delay distance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "50000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "d-s": {
                        "blurb": "Delay samples",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "d-t": {
                        "blurb": "Delay time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "m": {
                        "blurb": "Meters",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Samples (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-comp-delay-stereomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ramp": {
                        "blurb": "Ramping",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "samp": {
                        "blurb": "Samples",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "t": {
                        "blurb": "Temperature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "60",
                        "min": "-60",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "time": {
                        "blurb": "Time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-comp-delay-x2-stereo": {
                "author": "LSP LV2",
                "description": "LSP Delay Compensator x2 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-comp-delay-x2-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Delay",
                "long-name": "LSP Delay Compensator x2 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cm-l": {
                        "blurb": "Centimeters L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cm-r": {
                        "blurb": "Centimeters R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "d-d-l": {
                        "blurb": "Delay distance L",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "50000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "d-d-r": {
                        "blurb": "Delay distance R",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "50000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "d-s-l": {
                        "blurb": "Delay samples L",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "d-s-r": {
                        "blurb": "Delay samples R",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "d-t-l": {
                        "blurb": "Delay time L",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "d-t-r": {
                        "blurb": "Delay time R",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "dry-l": {
                        "blurb": "Dry amount L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry-r": {
                        "blurb": "Dry amount R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "m-l": {
                        "blurb": "Meters L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "m-r": {
                        "blurb": "Meters R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mode-l": {
                        "blurb": "Mode L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Samples (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-comp-delay-x2-stereomode-l",
                        "writable": true
                    },
                    "mode-r": {
                        "blurb": "Mode R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Samples (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-comp-delay-x2-stereomode-r",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ramp-l": {
                        "blurb": "Ramping L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ramp-r": {
                        "blurb": "Ramping R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "samp-l": {
                        "blurb": "Samples L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "samp-r": {
                        "blurb": "Samples R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "t-l": {
                        "blurb": "Temperature L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "60",
                        "min": "-60",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "t-r": {
                        "blurb": "Temperature R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "60",
                        "min": "-60",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "time-l": {
                        "blurb": "Time L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "time-r": {
                        "blurb": "Time R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet-l": {
                        "blurb": "Wet amount L",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet-r": {
                        "blurb": "Wet amount R",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-compressor-lr": {
                "author": "LSP LV2",
                "description": "LSP Compressor LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-compressor-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Compressor LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-l": {
                        "blurb": "Attack level Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-r": {
                        "blurb": "Attack level Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-l": {
                        "blurb": "Attack time Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-r": {
                        "blurb": "Attack time Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-l": {
                        "blurb": "Dry gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-r": {
                        "blurb": "Dry gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-l": {
                        "blurb": "Curve level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-r": {
                        "blurb": "Curve level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm-l": {
                        "blurb": "Compression mode Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrcm-l",
                        "writable": true
                    },
                    "cm-r": {
                        "blurb": "Compression mode Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrcm-r",
                        "writable": true
                    },
                    "cr-l": {
                        "blurb": "Ratio Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-r": {
                        "blurb": "Ratio Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-l": {
                        "blurb": "Wet gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-r": {
                        "blurb": "Wet gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-l": {
                        "blurb": "Envelope level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-r": {
                        "blurb": "Envelope level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-l": {
                        "blurb": "Envelope level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-r": {
                        "blurb": "Envelope level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-l": {
                        "blurb": "Gain reduction visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-r": {
                        "blurb": "Gain reduction visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn-l": {
                        "blurb": "Knee Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-r": {
                        "blurb": "Knee Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-l": {
                        "blurb": "Makeup gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-r": {
                        "blurb": "Makeup gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl-l": {
                        "blurb": "Release level Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-r": {
                        "blurb": "Release level Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-l": {
                        "blurb": "Reduction level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-r": {
                        "blurb": "Reduction level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-l": {
                        "blurb": "Relative release level Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-r": {
                        "blurb": "Relative release level Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-l": {
                        "blurb": "Release time Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-r": {
                        "blurb": "Release time Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-l": {
                        "blurb": "Sidechain listen Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-r": {
                        "blurb": "Sidechain listen Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-l": {
                        "blurb": "Sidechain mode Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrscm-l",
                        "writable": true
                    },
                    "scm-r": {
                        "blurb": "Sidechain mode Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrscm-r",
                        "writable": true
                    },
                    "scp-l": {
                        "blurb": "Sidechain preamp Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-r": {
                        "blurb": "Sidechain preamp Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-l": {
                        "blurb": "Sidechain reactivity Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-r": {
                        "blurb": "Sidechain reactivity Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-l": {
                        "blurb": "Sidechain source Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrscs-l",
                        "writable": true
                    },
                    "scs-r": {
                        "blurb": "Sidechain source Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrscs-r",
                        "writable": true
                    },
                    "sct-l": {
                        "blurb": "Sidechain type Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrsct-l",
                        "writable": true
                    },
                    "sct-r": {
                        "blurb": "Sidechain type Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-lrsct-r",
                        "writable": true
                    },
                    "sla-l": {
                        "blurb": "Sidechain lookahead Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-r": {
                        "blurb": "Sidechain lookahead Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-l": {
                        "blurb": "Sidechain level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-r": {
                        "blurb": "Sidechain level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-l": {
                        "blurb": "Sidechain level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-r": {
                        "blurb": "Sidechain level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-compressor-mono": {
                "author": "LSP LV2",
                "description": "LSP Compressor Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-compressor-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Compressor Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al": {
                        "blurb": "Attack level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at": {
                        "blurb": "Attack time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm": {
                        "blurb": "Compression mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Downward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-monocm",
                        "writable": true
                    },
                    "cr": {
                        "blurb": "Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm": {
                        "blurb": "Input level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv": {
                        "blurb": "Input level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn": {
                        "blurb": "Knee",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm": {
                        "blurb": "Output level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv": {
                        "blurb": "Output level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-monoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sct": {
                        "blurb": "Sidechain type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-monosct",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-compressor-ms": {
                "author": "LSP LV2",
                "description": "LSP Compressor MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-compressor-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Compressor MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-m": {
                        "blurb": "Attack level Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-s": {
                        "blurb": "Attack level Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-m": {
                        "blurb": "Attack time Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-s": {
                        "blurb": "Attack time Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-m": {
                        "blurb": "Dry gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-s": {
                        "blurb": "Dry gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-m": {
                        "blurb": "Curve level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-s": {
                        "blurb": "Curve level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm-m": {
                        "blurb": "Compression mode Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-mscm-m",
                        "writable": true
                    },
                    "cm-s": {
                        "blurb": "Compression mode Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-mscm-s",
                        "writable": true
                    },
                    "cr-m": {
                        "blurb": "Ratio Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-s": {
                        "blurb": "Ratio Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-m": {
                        "blurb": "Wet gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-s": {
                        "blurb": "Wet gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-m": {
                        "blurb": "Envelope level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-s": {
                        "blurb": "Envelope level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-m": {
                        "blurb": "Envelope level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-s": {
                        "blurb": "Envelope level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-m": {
                        "blurb": "Gain reduction visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-s": {
                        "blurb": "Gain reduction visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-m": {
                        "blurb": "Input level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-s": {
                        "blurb": "Input level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-m": {
                        "blurb": "Input level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-s": {
                        "blurb": "Input level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn-m": {
                        "blurb": "Knee Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-s": {
                        "blurb": "Knee Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-m": {
                        "blurb": "Makeup gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-s": {
                        "blurb": "Makeup gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "msl": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-m": {
                        "blurb": "Output level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-s": {
                        "blurb": "Output level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-m": {
                        "blurb": "Output level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-s": {
                        "blurb": "Output level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl-m": {
                        "blurb": "Release level Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-s": {
                        "blurb": "Release level Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-m": {
                        "blurb": "Reduction level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-s": {
                        "blurb": "Reduction level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-m": {
                        "blurb": "Relative release level Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-s": {
                        "blurb": "Relative release level Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-m": {
                        "blurb": "Release time Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-s": {
                        "blurb": "Release time Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-m": {
                        "blurb": "Sidechain listen Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-s": {
                        "blurb": "Sidechain listen Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-m": {
                        "blurb": "Sidechain mode Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-msscm-m",
                        "writable": true
                    },
                    "scm-s": {
                        "blurb": "Sidechain mode Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-msscm-s",
                        "writable": true
                    },
                    "scp-m": {
                        "blurb": "Sidechain preamp Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-s": {
                        "blurb": "Sidechain preamp Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-m": {
                        "blurb": "Sidechain reactivity Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-s": {
                        "blurb": "Sidechain reactivity Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-m": {
                        "blurb": "Sidechain source Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-msscs-m",
                        "writable": true
                    },
                    "scs-s": {
                        "blurb": "Sidechain source Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-msscs-s",
                        "writable": true
                    },
                    "sct-m": {
                        "blurb": "Sidechain type Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-mssct-m",
                        "writable": true
                    },
                    "sct-s": {
                        "blurb": "Sidechain type Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-mssct-s",
                        "writable": true
                    },
                    "sla-m": {
                        "blurb": "Sidechain lookahead Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-s": {
                        "blurb": "Sidechain lookahead Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-m": {
                        "blurb": "Sidechain level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-s": {
                        "blurb": "Sidechain level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-m": {
                        "blurb": "Sidechain level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-s": {
                        "blurb": "Sidechain level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-compressor-stereo": {
                "author": "LSP LV2",
                "description": "LSP Compressor Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-compressor-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Compressor Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al": {
                        "blurb": "Attack level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at": {
                        "blurb": "Attack time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm": {
                        "blurb": "Compression mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Downward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-stereocm",
                        "writable": true
                    },
                    "cr": {
                        "blurb": "Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn": {
                        "blurb": "Knee",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-stereoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs": {
                        "blurb": "Sidechain source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-stereoscs",
                        "writable": true
                    },
                    "sct": {
                        "blurb": "Sidechain type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-compressor-stereosct",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lr": {
                "author": "LSP LV2",
                "description": "LSP Dynamic Processor LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-dyna-processor-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Dynamic Processor LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ae0-l": {
                        "blurb": "Attack enable 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae0-r": {
                        "blurb": "Attack enable 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae1-l": {
                        "blurb": "Attack enable 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae1-r": {
                        "blurb": "Attack enable 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae2-l": {
                        "blurb": "Attack enable 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae2-r": {
                        "blurb": "Attack enable 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae3-l": {
                        "blurb": "Attack enable 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae3-r": {
                        "blurb": "Attack enable 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "al0-l": {
                        "blurb": "Attack level 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al0-r": {
                        "blurb": "Attack level 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al1-l": {
                        "blurb": "Attack level 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al1-r": {
                        "blurb": "Attack level 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al2-l": {
                        "blurb": "Attack level 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al2-r": {
                        "blurb": "Attack level 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al3-l": {
                        "blurb": "Attack level 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al3-r": {
                        "blurb": "Attack level 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at0-l": {
                        "blurb": "Attack time 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at0-r": {
                        "blurb": "Attack time 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at1-l": {
                        "blurb": "Attack time 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at1-r": {
                        "blurb": "Attack time 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at2-l": {
                        "blurb": "Attack time 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at2-r": {
                        "blurb": "Attack time 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at3-l": {
                        "blurb": "Attack time 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at3-r": {
                        "blurb": "Attack time 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "atd-l": {
                        "blurb": "Attack time default Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "atd-r": {
                        "blurb": "Attack time default Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-l": {
                        "blurb": "Dry gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-r": {
                        "blurb": "Dry gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-l": {
                        "blurb": "Curve level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-r": {
                        "blurb": "Curve level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cmv-l": {
                        "blurb": "Curve modelling visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cmv-r": {
                        "blurb": "Curve modelling visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cwt-l": {
                        "blurb": "Wet gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-r": {
                        "blurb": "Wet gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-l": {
                        "blurb": "Envelope level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-r": {
                        "blurb": "Envelope level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-l": {
                        "blurb": "Envelope level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-r": {
                        "blurb": "Envelope level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl0-l": {
                        "blurb": "Gain 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl0-r": {
                        "blurb": "Gain 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl1-l": {
                        "blurb": "Gain 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl1-r": {
                        "blurb": "Gain 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl2-l": {
                        "blurb": "Gain 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl2-r": {
                        "blurb": "Gain 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl3-l": {
                        "blurb": "Gain 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl3-r": {
                        "blurb": "Gain 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-l": {
                        "blurb": "Gain reduction visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-r": {
                        "blurb": "Gain reduction visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hlr-l": {
                        "blurb": "High-level ratio Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hlr-r": {
                        "blurb": "High-level ratio Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn0-l": {
                        "blurb": "Knee 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn0-r": {
                        "blurb": "Knee 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn1-l": {
                        "blurb": "Knee 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn1-r": {
                        "blurb": "Knee 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn2-l": {
                        "blurb": "Knee 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn2-r": {
                        "blurb": "Knee 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn3-l": {
                        "blurb": "Knee 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn3-r": {
                        "blurb": "Knee 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "llr-l": {
                        "blurb": "Low-level ratio Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "llr-r": {
                        "blurb": "Low-level ratio Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "omk-l": {
                        "blurb": "Overall makeup gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "omk-r": {
                        "blurb": "Overall makeup gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe0-l": {
                        "blurb": "Point enable 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe0-r": {
                        "blurb": "Point enable 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe1-l": {
                        "blurb": "Point enable 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe1-r": {
                        "blurb": "Point enable 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe2-l": {
                        "blurb": "Point enable 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe2-r": {
                        "blurb": "Point enable 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe3-l": {
                        "blurb": "Point enable 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe3-r": {
                        "blurb": "Point enable 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "psel": {
                        "blurb": "Processor selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrpsel",
                        "writable": true
                    },
                    "re0-l": {
                        "blurb": "Release enable 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re0-r": {
                        "blurb": "Release enable 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re1-l": {
                        "blurb": "Release enable 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re1-r": {
                        "blurb": "Release enable 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re2-l": {
                        "blurb": "Release enable 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re2-r": {
                        "blurb": "Release enable 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re3-l": {
                        "blurb": "Release enable 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re3-r": {
                        "blurb": "Release enable 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl0-l": {
                        "blurb": "Relative level 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl0-r": {
                        "blurb": "Relative level 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl1-l": {
                        "blurb": "Relative level 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl1-r": {
                        "blurb": "Relative level 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl2-l": {
                        "blurb": "Relative level 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl2-r": {
                        "blurb": "Relative level 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl3-l": {
                        "blurb": "Relative level 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl3-r": {
                        "blurb": "Relative level 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rlm-l": {
                        "blurb": "Reduction level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-r": {
                        "blurb": "Reduction level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt0-l": {
                        "blurb": "Release time 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt0-r": {
                        "blurb": "Release time 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt1-l": {
                        "blurb": "Release time 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt1-r": {
                        "blurb": "Release time 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt2-l": {
                        "blurb": "Release time 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt2-r": {
                        "blurb": "Release time 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt3-l": {
                        "blurb": "Release time 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt3-r": {
                        "blurb": "Release time 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rtd-l": {
                        "blurb": "Release time default Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rtd-r": {
                        "blurb": "Release time default Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-l": {
                        "blurb": "Sidechain listen Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-r": {
                        "blurb": "Sidechain listen Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-l": {
                        "blurb": "Sidechain mode Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrscm-l",
                        "writable": true
                    },
                    "scm-r": {
                        "blurb": "Sidechain mode Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrscm-r",
                        "writable": true
                    },
                    "scp-l": {
                        "blurb": "Sidechain preamp Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-r": {
                        "blurb": "Sidechain preamp Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-l": {
                        "blurb": "Sidechain reactivity Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-r": {
                        "blurb": "Sidechain reactivity Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-l": {
                        "blurb": "Sidechain source Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrscs-l",
                        "writable": true
                    },
                    "scs-r": {
                        "blurb": "Sidechain source Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrscs-r",
                        "writable": true
                    },
                    "sct-l": {
                        "blurb": "Sidechain type Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrsct-l",
                        "writable": true
                    },
                    "sct-r": {
                        "blurb": "Sidechain type Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-lrsct-r",
                        "writable": true
                    },
                    "sla-l": {
                        "blurb": "Sidechain lookahead Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-r": {
                        "blurb": "Sidechain lookahead Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-l": {
                        "blurb": "Sidechain level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-r": {
                        "blurb": "Sidechain level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-l": {
                        "blurb": "Sidechain level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-r": {
                        "blurb": "Sidechain level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tl0-l": {
                        "blurb": "Threshold 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl0-r": {
                        "blurb": "Threshold 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl1-l": {
                        "blurb": "Threshold 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl1-r": {
                        "blurb": "Threshold 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl2-l": {
                        "blurb": "Threshold 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl2-r": {
                        "blurb": "Threshold 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl3-l": {
                        "blurb": "Threshold 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl3-r": {
                        "blurb": "Threshold 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-mono": {
                "author": "LSP LV2",
                "description": "LSP Dynamic Processor Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-dyna-processor-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Dynamic Processor Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ae0": {
                        "blurb": "Attack enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae1": {
                        "blurb": "Attack enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae2": {
                        "blurb": "Attack enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae3": {
                        "blurb": "Attack enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "al0": {
                        "blurb": "Attack level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al1": {
                        "blurb": "Attack level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al2": {
                        "blurb": "Attack level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al3": {
                        "blurb": "Attack level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at0": {
                        "blurb": "Attack time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at1": {
                        "blurb": "Attack time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at2": {
                        "blurb": "Attack time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at3": {
                        "blurb": "Attack time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "atd": {
                        "blurb": "Attack time default",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cmv": {
                        "blurb": "Curve modelling visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl0": {
                        "blurb": "Gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl1": {
                        "blurb": "Gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl2": {
                        "blurb": "Gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl3": {
                        "blurb": "Gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hlr": {
                        "blurb": "High-level ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ilm": {
                        "blurb": "Input level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv": {
                        "blurb": "Input level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn0": {
                        "blurb": "Knee 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn1": {
                        "blurb": "Knee 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn2": {
                        "blurb": "Knee 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn3": {
                        "blurb": "Knee 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "llr": {
                        "blurb": "Low-level ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm": {
                        "blurb": "Output level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv": {
                        "blurb": "Output level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "omk": {
                        "blurb": "Overall makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe0": {
                        "blurb": "Point enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe1": {
                        "blurb": "Point enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe2": {
                        "blurb": "Point enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe3": {
                        "blurb": "Point enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re0": {
                        "blurb": "Release enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re1": {
                        "blurb": "Release enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re2": {
                        "blurb": "Release enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re3": {
                        "blurb": "Release enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl0": {
                        "blurb": "Relative level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl1": {
                        "blurb": "Relative level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl2": {
                        "blurb": "Relative level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl3": {
                        "blurb": "Relative level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt0": {
                        "blurb": "Release time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt1": {
                        "blurb": "Release time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt2": {
                        "blurb": "Release time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt3": {
                        "blurb": "Release time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rtd": {
                        "blurb": "Release time default",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-monoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sct": {
                        "blurb": "Sidechain type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-monosct",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tl0": {
                        "blurb": "Threshold 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl1": {
                        "blurb": "Threshold 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl2": {
                        "blurb": "Threshold 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl3": {
                        "blurb": "Threshold 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-ms": {
                "author": "LSP LV2",
                "description": "LSP Dynamic Processor MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-dyna-processor-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Dynamic Processor MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ae0-m": {
                        "blurb": "Attack enable 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae0-s": {
                        "blurb": "Attack enable 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae1-m": {
                        "blurb": "Attack enable 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae1-s": {
                        "blurb": "Attack enable 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae2-m": {
                        "blurb": "Attack enable 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae2-s": {
                        "blurb": "Attack enable 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae3-m": {
                        "blurb": "Attack enable 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae3-s": {
                        "blurb": "Attack enable 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "al0-m": {
                        "blurb": "Attack level 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al0-s": {
                        "blurb": "Attack level 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al1-m": {
                        "blurb": "Attack level 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al1-s": {
                        "blurb": "Attack level 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al2-m": {
                        "blurb": "Attack level 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al2-s": {
                        "blurb": "Attack level 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al3-m": {
                        "blurb": "Attack level 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al3-s": {
                        "blurb": "Attack level 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at0-m": {
                        "blurb": "Attack time 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at0-s": {
                        "blurb": "Attack time 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at1-m": {
                        "blurb": "Attack time 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at1-s": {
                        "blurb": "Attack time 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at2-m": {
                        "blurb": "Attack time 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at2-s": {
                        "blurb": "Attack time 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at3-m": {
                        "blurb": "Attack time 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at3-s": {
                        "blurb": "Attack time 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "atd-m": {
                        "blurb": "Attack time default Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "atd-s": {
                        "blurb": "Attack time default Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-m": {
                        "blurb": "Dry gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-s": {
                        "blurb": "Dry gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-m": {
                        "blurb": "Curve level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-s": {
                        "blurb": "Curve level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cmv-m": {
                        "blurb": "Curve modelling visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cmv-s": {
                        "blurb": "Curve modelling visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cwt-m": {
                        "blurb": "Wet gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-s": {
                        "blurb": "Wet gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-m": {
                        "blurb": "Envelope level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-s": {
                        "blurb": "Envelope level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-m": {
                        "blurb": "Envelope level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-s": {
                        "blurb": "Envelope level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl0-m": {
                        "blurb": "Gain 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl0-s": {
                        "blurb": "Gain 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl1-m": {
                        "blurb": "Gain 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl1-s": {
                        "blurb": "Gain 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl2-m": {
                        "blurb": "Gain 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl2-s": {
                        "blurb": "Gain 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl3-m": {
                        "blurb": "Gain 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl3-s": {
                        "blurb": "Gain 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-m": {
                        "blurb": "Gain reduction visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-s": {
                        "blurb": "Gain reduction visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hlr-m": {
                        "blurb": "High-level ratio Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hlr-s": {
                        "blurb": "High-level ratio Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ilm-m": {
                        "blurb": "Input level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-s": {
                        "blurb": "Input level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-m": {
                        "blurb": "Input level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-s": {
                        "blurb": "Input level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn0-m": {
                        "blurb": "Knee 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn0-s": {
                        "blurb": "Knee 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn1-m": {
                        "blurb": "Knee 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn1-s": {
                        "blurb": "Knee 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn2-m": {
                        "blurb": "Knee 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn2-s": {
                        "blurb": "Knee 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn3-m": {
                        "blurb": "Knee 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn3-s": {
                        "blurb": "Knee 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "llr-m": {
                        "blurb": "Low-level ratio Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "llr-s": {
                        "blurb": "Low-level ratio Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "msl": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-m": {
                        "blurb": "Output level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-s": {
                        "blurb": "Output level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-m": {
                        "blurb": "Output level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-s": {
                        "blurb": "Output level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "omk-m": {
                        "blurb": "Overall makeup gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "omk-s": {
                        "blurb": "Overall makeup gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe0-m": {
                        "blurb": "Point enable 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe0-s": {
                        "blurb": "Point enable 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe1-m": {
                        "blurb": "Point enable 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe1-s": {
                        "blurb": "Point enable 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe2-m": {
                        "blurb": "Point enable 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe2-s": {
                        "blurb": "Point enable 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe3-m": {
                        "blurb": "Point enable 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe3-s": {
                        "blurb": "Point enable 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "psel": {
                        "blurb": "Processor selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-mspsel",
                        "writable": true
                    },
                    "re0-m": {
                        "blurb": "Release enable 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re0-s": {
                        "blurb": "Release enable 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re1-m": {
                        "blurb": "Release enable 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re1-s": {
                        "blurb": "Release enable 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re2-m": {
                        "blurb": "Release enable 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re2-s": {
                        "blurb": "Release enable 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re3-m": {
                        "blurb": "Release enable 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re3-s": {
                        "blurb": "Release enable 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl0-m": {
                        "blurb": "Relative level 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl0-s": {
                        "blurb": "Relative level 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl1-m": {
                        "blurb": "Relative level 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl1-s": {
                        "blurb": "Relative level 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl2-m": {
                        "blurb": "Relative level 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl2-s": {
                        "blurb": "Relative level 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl3-m": {
                        "blurb": "Relative level 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl3-s": {
                        "blurb": "Relative level 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rlm-m": {
                        "blurb": "Reduction level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-s": {
                        "blurb": "Reduction level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt0-m": {
                        "blurb": "Release time 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt0-s": {
                        "blurb": "Release time 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt1-m": {
                        "blurb": "Release time 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt1-s": {
                        "blurb": "Release time 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt2-m": {
                        "blurb": "Release time 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt2-s": {
                        "blurb": "Release time 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt3-m": {
                        "blurb": "Release time 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt3-s": {
                        "blurb": "Release time 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rtd-m": {
                        "blurb": "Release time default Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rtd-s": {
                        "blurb": "Release time default Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-m": {
                        "blurb": "Sidechain listen Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-s": {
                        "blurb": "Sidechain listen Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-m": {
                        "blurb": "Sidechain mode Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-msscm-m",
                        "writable": true
                    },
                    "scm-s": {
                        "blurb": "Sidechain mode Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-msscm-s",
                        "writable": true
                    },
                    "scp-m": {
                        "blurb": "Sidechain preamp Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-s": {
                        "blurb": "Sidechain preamp Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-m": {
                        "blurb": "Sidechain reactivity Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-s": {
                        "blurb": "Sidechain reactivity Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-m": {
                        "blurb": "Sidechain source Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-msscs-m",
                        "writable": true
                    },
                    "scs-s": {
                        "blurb": "Sidechain source Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-msscs-s",
                        "writable": true
                    },
                    "sct-m": {
                        "blurb": "Sidechain type Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-mssct-m",
                        "writable": true
                    },
                    "sct-s": {
                        "blurb": "Sidechain type Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-mssct-s",
                        "writable": true
                    },
                    "sla-m": {
                        "blurb": "Sidechain lookahead Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-s": {
                        "blurb": "Sidechain lookahead Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-m": {
                        "blurb": "Sidechain level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-s": {
                        "blurb": "Sidechain level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-m": {
                        "blurb": "Sidechain level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-s": {
                        "blurb": "Sidechain level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tl0-m": {
                        "blurb": "Threshold 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl0-s": {
                        "blurb": "Threshold 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl1-m": {
                        "blurb": "Threshold 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl1-s": {
                        "blurb": "Threshold 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl2-m": {
                        "blurb": "Threshold 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl2-s": {
                        "blurb": "Threshold 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl3-m": {
                        "blurb": "Threshold 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl3-s": {
                        "blurb": "Threshold 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-stereo": {
                "author": "LSP LV2",
                "description": "LSP Dynamic Processor Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-dyna-processor-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Dynamic Processor Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ae0": {
                        "blurb": "Attack enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae1": {
                        "blurb": "Attack enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae2": {
                        "blurb": "Attack enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ae3": {
                        "blurb": "Attack enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "al0": {
                        "blurb": "Attack level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al1": {
                        "blurb": "Attack level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al2": {
                        "blurb": "Attack level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al3": {
                        "blurb": "Attack level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at0": {
                        "blurb": "Attack time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at1": {
                        "blurb": "Attack time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at2": {
                        "blurb": "Attack time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at3": {
                        "blurb": "Attack time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "atd": {
                        "blurb": "Attack time default",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cmv": {
                        "blurb": "Curve modelling visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl0": {
                        "blurb": "Gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl1": {
                        "blurb": "Gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl2": {
                        "blurb": "Gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl3": {
                        "blurb": "Gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hlr": {
                        "blurb": "High-level ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn0": {
                        "blurb": "Knee 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn1": {
                        "blurb": "Knee 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn2": {
                        "blurb": "Knee 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn3": {
                        "blurb": "Knee 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "llr": {
                        "blurb": "Low-level ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0.01",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "omk": {
                        "blurb": "Overall makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe0": {
                        "blurb": "Point enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe1": {
                        "blurb": "Point enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe2": {
                        "blurb": "Point enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pe3": {
                        "blurb": "Point enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re0": {
                        "blurb": "Release enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re1": {
                        "blurb": "Release enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re2": {
                        "blurb": "Release enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "re3": {
                        "blurb": "Release enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl0": {
                        "blurb": "Relative level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl1": {
                        "blurb": "Relative level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl2": {
                        "blurb": "Relative level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl3": {
                        "blurb": "Relative level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt0": {
                        "blurb": "Release time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt1": {
                        "blurb": "Release time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt2": {
                        "blurb": "Release time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt3": {
                        "blurb": "Release time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rtd": {
                        "blurb": "Release time default",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-stereoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs": {
                        "blurb": "Sidechain source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-stereoscs",
                        "writable": true
                    },
                    "sct": {
                        "blurb": "Sidechain type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Feed-forward (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-dyna-processor-stereosct",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tl0": {
                        "blurb": "Threshold 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl1": {
                        "blurb": "Threshold 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl2": {
                        "blurb": "Threshold 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tl3": {
                        "blurb": "Threshold 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.00398",
                        "max": "15.8489",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-expander-lr": {
                "author": "LSP LV2",
                "description": "LSP Expander LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-expander-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Expander",
                "long-name": "LSP Expander LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-l": {
                        "blurb": "Attack level Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-r": {
                        "blurb": "Attack level Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-l": {
                        "blurb": "Attack time Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-r": {
                        "blurb": "Attack time Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-l": {
                        "blurb": "Dry gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-r": {
                        "blurb": "Dry gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-l": {
                        "blurb": "Curve level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-r": {
                        "blurb": "Curve level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cr-l": {
                        "blurb": "Ratio Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-r": {
                        "blurb": "Ratio Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-l": {
                        "blurb": "Wet gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-r": {
                        "blurb": "Wet gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-l": {
                        "blurb": "Envelope level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-r": {
                        "blurb": "Envelope level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-l": {
                        "blurb": "Envelope level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-r": {
                        "blurb": "Envelope level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "em-l": {
                        "blurb": "Expander mode Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Up (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-lrem-l",
                        "writable": true
                    },
                    "em-r": {
                        "blurb": "Expander mode Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Up (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-lrem-r",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-l": {
                        "blurb": "Gain reduction visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-r": {
                        "blurb": "Gain reduction visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn-l": {
                        "blurb": "Knee Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-r": {
                        "blurb": "Knee Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-l": {
                        "blurb": "Makeup gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-r": {
                        "blurb": "Makeup gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl-l": {
                        "blurb": "Release level Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-r": {
                        "blurb": "Release level Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-l": {
                        "blurb": "Reduction level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-r": {
                        "blurb": "Reduction level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-l": {
                        "blurb": "Relative release level Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-r": {
                        "blurb": "Relative release level Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-l": {
                        "blurb": "Release time Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-r": {
                        "blurb": "Release time Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-l": {
                        "blurb": "Sidechain listen Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-r": {
                        "blurb": "Sidechain listen Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-l": {
                        "blurb": "Sidechain mode Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-lrscm-l",
                        "writable": true
                    },
                    "scm-r": {
                        "blurb": "Sidechain mode Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-lrscm-r",
                        "writable": true
                    },
                    "scp-l": {
                        "blurb": "Sidechain preamp Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-r": {
                        "blurb": "Sidechain preamp Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-l": {
                        "blurb": "Sidechain reactivity Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-r": {
                        "blurb": "Sidechain reactivity Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-l": {
                        "blurb": "Sidechain source Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-lrscs-l",
                        "writable": true
                    },
                    "scs-r": {
                        "blurb": "Sidechain source Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-lrscs-r",
                        "writable": true
                    },
                    "sla-l": {
                        "blurb": "Sidechain lookahead Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-r": {
                        "blurb": "Sidechain lookahead Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-l": {
                        "blurb": "Sidechain level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-r": {
                        "blurb": "Sidechain level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-l": {
                        "blurb": "Sidechain level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-r": {
                        "blurb": "Sidechain level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-expander-mono": {
                "author": "LSP LV2",
                "description": "LSP Expander Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-expander-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Expander",
                "long-name": "LSP Expander Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al": {
                        "blurb": "Attack level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at": {
                        "blurb": "Attack time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cr": {
                        "blurb": "Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "em": {
                        "blurb": "Expander mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Up (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-monoem",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm": {
                        "blurb": "Input level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv": {
                        "blurb": "Input level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn": {
                        "blurb": "Knee",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm": {
                        "blurb": "Output level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv": {
                        "blurb": "Output level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-monoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-expander-ms": {
                "author": "LSP LV2",
                "description": "LSP Expander MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-expander-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Expander",
                "long-name": "LSP Expander MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-m": {
                        "blurb": "Attack level Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-s": {
                        "blurb": "Attack level Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-m": {
                        "blurb": "Attack time Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-s": {
                        "blurb": "Attack time Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-m": {
                        "blurb": "Dry gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-s": {
                        "blurb": "Dry gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-m": {
                        "blurb": "Curve level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-s": {
                        "blurb": "Curve level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cr-m": {
                        "blurb": "Ratio Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-s": {
                        "blurb": "Ratio Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-m": {
                        "blurb": "Wet gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-s": {
                        "blurb": "Wet gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-m": {
                        "blurb": "Envelope level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-s": {
                        "blurb": "Envelope level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-m": {
                        "blurb": "Envelope level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-s": {
                        "blurb": "Envelope level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "em-m": {
                        "blurb": "Expander mode Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Up (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-msem-m",
                        "writable": true
                    },
                    "em-s": {
                        "blurb": "Expander mode Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Up (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-msem-s",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-m": {
                        "blurb": "Gain reduction visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-s": {
                        "blurb": "Gain reduction visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-m": {
                        "blurb": "Input level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-s": {
                        "blurb": "Input level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-m": {
                        "blurb": "Input level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-s": {
                        "blurb": "Input level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn-m": {
                        "blurb": "Knee Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-s": {
                        "blurb": "Knee Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-m": {
                        "blurb": "Makeup gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-s": {
                        "blurb": "Makeup gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "msl": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-m": {
                        "blurb": "Output level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-s": {
                        "blurb": "Output level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-m": {
                        "blurb": "Output level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-s": {
                        "blurb": "Output level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl-m": {
                        "blurb": "Release level Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-s": {
                        "blurb": "Release level Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-m": {
                        "blurb": "Reduction level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-s": {
                        "blurb": "Reduction level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-m": {
                        "blurb": "Relative release level Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-s": {
                        "blurb": "Relative release level Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-m": {
                        "blurb": "Release time Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-s": {
                        "blurb": "Release time Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-m": {
                        "blurb": "Sidechain listen Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-s": {
                        "blurb": "Sidechain listen Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-m": {
                        "blurb": "Sidechain mode Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-msscm-m",
                        "writable": true
                    },
                    "scm-s": {
                        "blurb": "Sidechain mode Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-msscm-s",
                        "writable": true
                    },
                    "scp-m": {
                        "blurb": "Sidechain preamp Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-s": {
                        "blurb": "Sidechain preamp Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-m": {
                        "blurb": "Sidechain reactivity Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-s": {
                        "blurb": "Sidechain reactivity Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-m": {
                        "blurb": "Sidechain source Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-msscs-m",
                        "writable": true
                    },
                    "scs-s": {
                        "blurb": "Sidechain source Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-msscs-s",
                        "writable": true
                    },
                    "sla-m": {
                        "blurb": "Sidechain lookahead Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-s": {
                        "blurb": "Sidechain lookahead Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-m": {
                        "blurb": "Sidechain level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-s": {
                        "blurb": "Sidechain level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-m": {
                        "blurb": "Sidechain level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-s": {
                        "blurb": "Sidechain level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-expander-stereo": {
                "author": "LSP LV2",
                "description": "LSP Expander Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-expander-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Expander",
                "long-name": "LSP Expander Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al": {
                        "blurb": "Attack level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at": {
                        "blurb": "Attack time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cr": {
                        "blurb": "Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "em": {
                        "blurb": "Expander mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Up (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-stereoem",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "kn": {
                        "blurb": "Knee",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "251.189",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-stereoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs": {
                        "blurb": "Sidechain source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-expander-stereoscs",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-gate-lr": {
                "author": "LSP LV2",
                "description": "LSP Gate LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-gate-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Gate",
                "long-name": "LSP Gate LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "at-l": {
                        "blurb": "Attack Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-r": {
                        "blurb": "Attack Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-l": {
                        "blurb": "Dry gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-r": {
                        "blurb": "Dry gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-l": {
                        "blurb": "Curve level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-r": {
                        "blurb": "Curve level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cwt-l": {
                        "blurb": "Wet gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-r": {
                        "blurb": "Wet gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-l": {
                        "blurb": "Envelope level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-r": {
                        "blurb": "Envelope level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-l": {
                        "blurb": "Envelope level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-r": {
                        "blurb": "Envelope level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gh-l": {
                        "blurb": "Hysteresis Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gh-r": {
                        "blurb": "Hysteresis Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gr-l": {
                        "blurb": "Reduction Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-r": {
                        "blurb": "Reduction Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-l": {
                        "blurb": "Gain reduction visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-r": {
                        "blurb": "Gain reduction visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gt-l": {
                        "blurb": "Threshold Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gt-r": {
                        "blurb": "Threshold Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gz-l": {
                        "blurb": "Zone size Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gz-r": {
                        "blurb": "Zone size Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gzs-l": {
                        "blurb": "Zone start Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "gzs-r": {
                        "blurb": "Zone start Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ht-l": {
                        "blurb": "Hysteresis threshold Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ht-r": {
                        "blurb": "Hysteresis threshold Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hts-l": {
                        "blurb": "Hysteresis threshold start Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hts-r": {
                        "blurb": "Hysteresis threshold start Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hz-l": {
                        "blurb": "Hysteresis zone size Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hz-r": {
                        "blurb": "Hysteresis zone size Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hzs-l": {
                        "blurb": "Hysteresis zone start Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hzs-r": {
                        "blurb": "Hysteresis zone start Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mk-l": {
                        "blurb": "Makeup gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-r": {
                        "blurb": "Makeup gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rlm-l": {
                        "blurb": "Reduction level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-r": {
                        "blurb": "Reduction level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt-l": {
                        "blurb": "Release Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-r": {
                        "blurb": "Release Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-l": {
                        "blurb": "Sidechain listen Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-r": {
                        "blurb": "Sidechain listen Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-l": {
                        "blurb": "Sidechain mode Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-lrscm-l",
                        "writable": true
                    },
                    "scm-r": {
                        "blurb": "Sidechain mode Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-lrscm-r",
                        "writable": true
                    },
                    "scp-l": {
                        "blurb": "Sidechain preamp Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-r": {
                        "blurb": "Sidechain preamp Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-l": {
                        "blurb": "Sidechain reactivity Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-r": {
                        "blurb": "Sidechain reactivity Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-l": {
                        "blurb": "Sidechain source Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-lrscs-l",
                        "writable": true
                    },
                    "scs-r": {
                        "blurb": "Sidechain source Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-lrscs-r",
                        "writable": true
                    },
                    "sla-l": {
                        "blurb": "Sidechain lookahead Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-r": {
                        "blurb": "Sidechain lookahead Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-l": {
                        "blurb": "Sidechain level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-r": {
                        "blurb": "Sidechain level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-l": {
                        "blurb": "Sidechain level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-r": {
                        "blurb": "Sidechain level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-gate-mono": {
                "author": "LSP LV2",
                "description": "LSP Gate Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-gate-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Gate",
                "long-name": "LSP Gate Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "at": {
                        "blurb": "Attack",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gh": {
                        "blurb": "Hysteresis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gr": {
                        "blurb": "Reduction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gt": {
                        "blurb": "Threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gz": {
                        "blurb": "Zone size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gzs": {
                        "blurb": "Zone start",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ht": {
                        "blurb": "Hysteresis threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hts": {
                        "blurb": "Hysteresis threshold start",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hz": {
                        "blurb": "Hysteresis zone size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hzs": {
                        "blurb": "Hysteresis zone start",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm": {
                        "blurb": "Input level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv": {
                        "blurb": "Input level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm": {
                        "blurb": "Output level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv": {
                        "blurb": "Output level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt": {
                        "blurb": "Release",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-monoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-gate-ms": {
                "author": "LSP LV2",
                "description": "LSP Gate MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-gate-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Gate",
                "long-name": "LSP Gate MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "at-m": {
                        "blurb": "Attack Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-s": {
                        "blurb": "Attack Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr-m": {
                        "blurb": "Dry gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cdr-s": {
                        "blurb": "Dry gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-m": {
                        "blurb": "Curve level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-s": {
                        "blurb": "Curve level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cwt-m": {
                        "blurb": "Wet gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cwt-s": {
                        "blurb": "Wet gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-m": {
                        "blurb": "Envelope level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-s": {
                        "blurb": "Envelope level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv-m": {
                        "blurb": "Envelope level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "elv-s": {
                        "blurb": "Envelope level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gh-m": {
                        "blurb": "Hysteresis Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gh-s": {
                        "blurb": "Hysteresis Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gr-m": {
                        "blurb": "Reduction Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-s": {
                        "blurb": "Reduction Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv-m": {
                        "blurb": "Gain reduction visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grv-s": {
                        "blurb": "Gain reduction visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gt-m": {
                        "blurb": "Threshold Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gt-s": {
                        "blurb": "Threshold Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gz-m": {
                        "blurb": "Zone size Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gz-s": {
                        "blurb": "Zone size Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gzs-m": {
                        "blurb": "Zone start Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "gzs-s": {
                        "blurb": "Zone start Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ht-m": {
                        "blurb": "Hysteresis threshold Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ht-s": {
                        "blurb": "Hysteresis threshold Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hts-m": {
                        "blurb": "Hysteresis threshold start Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hts-s": {
                        "blurb": "Hysteresis threshold start Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hz-m": {
                        "blurb": "Hysteresis zone size Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hz-s": {
                        "blurb": "Hysteresis zone size Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hzs-m": {
                        "blurb": "Hysteresis zone start Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hzs-s": {
                        "blurb": "Hysteresis zone start Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-m": {
                        "blurb": "Input level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-s": {
                        "blurb": "Input level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-m": {
                        "blurb": "Input level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-s": {
                        "blurb": "Input level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mk-m": {
                        "blurb": "Makeup gain Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-s": {
                        "blurb": "Makeup gain Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "msl": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-m": {
                        "blurb": "Output level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-s": {
                        "blurb": "Output level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-m": {
                        "blurb": "Output level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-s": {
                        "blurb": "Output level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rlm-m": {
                        "blurb": "Reduction level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-s": {
                        "blurb": "Reduction level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt-m": {
                        "blurb": "Release Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-s": {
                        "blurb": "Release Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-m": {
                        "blurb": "Sidechain listen Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scl-s": {
                        "blurb": "Sidechain listen Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm-m": {
                        "blurb": "Sidechain mode Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-msscm-m",
                        "writable": true
                    },
                    "scm-s": {
                        "blurb": "Sidechain mode Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-msscm-s",
                        "writable": true
                    },
                    "scp-m": {
                        "blurb": "Sidechain preamp Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-s": {
                        "blurb": "Sidechain preamp Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-m": {
                        "blurb": "Sidechain reactivity Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-s": {
                        "blurb": "Sidechain reactivity Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-m": {
                        "blurb": "Sidechain source Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-msscs-m",
                        "writable": true
                    },
                    "scs-s": {
                        "blurb": "Sidechain source Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-msscs-s",
                        "writable": true
                    },
                    "sla-m": {
                        "blurb": "Sidechain lookahead Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-s": {
                        "blurb": "Sidechain lookahead Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm-m": {
                        "blurb": "Sidechain level meter Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slm-s": {
                        "blurb": "Sidechain level meter Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv-m": {
                        "blurb": "Sidechain level visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slv-s": {
                        "blurb": "Sidechain level visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-gate-stereo": {
                "author": "LSP LV2",
                "description": "LSP Gate Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-gate-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Gate",
                "long-name": "LSP Gate Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "at": {
                        "blurb": "Attack",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cdr": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm": {
                        "blurb": "Curve level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cwt": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm": {
                        "blurb": "Envelope level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elv": {
                        "blurb": "Envelope level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gh": {
                        "blurb": "Hysteresis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gr": {
                        "blurb": "Reduction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.00025",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grv": {
                        "blurb": "Gain reduction visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gt": {
                        "blurb": "Threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gz": {
                        "blurb": "Zone size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gzs": {
                        "blurb": "Zone start",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ht": {
                        "blurb": "Hysteresis threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hts": {
                        "blurb": "Hysteresis threshold start",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "hz": {
                        "blurb": "Hysteresis zone size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hzs": {
                        "blurb": "Hysteresis zone start",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilv-r": {
                        "blurb": "Input level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olv-l": {
                        "blurb": "Output level visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olv-r": {
                        "blurb": "Output level visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rlm": {
                        "blurb": "Reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rt": {
                        "blurb": "Release",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl": {
                        "blurb": "Sidechain listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Sidechain mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-stereoscm",
                        "writable": true
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "Sidechain reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs": {
                        "blurb": "Sidechain source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-gate-stereoscs",
                        "writable": true
                    },
                    "sla": {
                        "blurb": "Sidechain lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "slv": {
                        "blurb": "Sidechain level visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lr": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x16 LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x16 LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrfft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Band select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bands Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrfsel",
                        "writable": true
                    },
                    "fvl-0": {
                        "blurb": "Filter visibility  Left 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-1": {
                        "blurb": "Filter visibility  Left 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-10": {
                        "blurb": "Filter visibility  Left 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-11": {
                        "blurb": "Filter visibility  Left 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-12": {
                        "blurb": "Filter visibility  Left 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-13": {
                        "blurb": "Filter visibility  Left 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-14": {
                        "blurb": "Filter visibility  Left 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-15": {
                        "blurb": "Filter visibility  Left 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-2": {
                        "blurb": "Filter visibility  Left 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-3": {
                        "blurb": "Filter visibility  Left 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-4": {
                        "blurb": "Filter visibility  Left 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-5": {
                        "blurb": "Filter visibility  Left 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-6": {
                        "blurb": "Filter visibility  Left 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-7": {
                        "blurb": "Filter visibility  Left 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-8": {
                        "blurb": "Filter visibility  Left 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-9": {
                        "blurb": "Filter visibility  Left 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-0": {
                        "blurb": "Filter visibility  Right 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-1": {
                        "blurb": "Filter visibility  Right 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-10": {
                        "blurb": "Filter visibility  Right 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-11": {
                        "blurb": "Filter visibility  Right 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-12": {
                        "blurb": "Filter visibility  Right 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-13": {
                        "blurb": "Filter visibility  Right 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-14": {
                        "blurb": "Filter visibility  Right 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-15": {
                        "blurb": "Filter visibility  Right 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-2": {
                        "blurb": "Filter visibility  Right 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-3": {
                        "blurb": "Filter visibility  Right 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-4": {
                        "blurb": "Filter visibility  Right 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-5": {
                        "blurb": "Filter visibility  Right 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-6": {
                        "blurb": "Filter visibility  Right 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-7": {
                        "blurb": "Filter visibility  Right 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-8": {
                        "blurb": "Filter visibility  Right 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-9": {
                        "blurb": "Filter visibility  Right 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-0": {
                        "blurb": "Band gain Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-1": {
                        "blurb": "Band gain Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-10": {
                        "blurb": "Band gain Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-11": {
                        "blurb": "Band gain Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-12": {
                        "blurb": "Band gain Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-13": {
                        "blurb": "Band gain Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-14": {
                        "blurb": "Band gain Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-15": {
                        "blurb": "Band gain Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-2": {
                        "blurb": "Band gain Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-3": {
                        "blurb": "Band gain Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-4": {
                        "blurb": "Band gain Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-5": {
                        "blurb": "Band gain Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-6": {
                        "blurb": "Band gain Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-7": {
                        "blurb": "Band gain Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-8": {
                        "blurb": "Band gain Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-9": {
                        "blurb": "Band gain Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-0": {
                        "blurb": "Band gain Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-1": {
                        "blurb": "Band gain Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-10": {
                        "blurb": "Band gain Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-11": {
                        "blurb": "Band gain Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-12": {
                        "blurb": "Band gain Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-13": {
                        "blurb": "Band gain Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-14": {
                        "blurb": "Band gain Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-15": {
                        "blurb": "Band gain Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-2": {
                        "blurb": "Band gain Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-3": {
                        "blurb": "Band gain Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-4": {
                        "blurb": "Band gain Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-5": {
                        "blurb": "Band gain Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-6": {
                        "blurb": "Band gain Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-7": {
                        "blurb": "Band gain Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-8": {
                        "blurb": "Band gain Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-9": {
                        "blurb": "Band gain Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrslope",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xel-0": {
                        "blurb": "Band on Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-1": {
                        "blurb": "Band on Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-10": {
                        "blurb": "Band on Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-11": {
                        "blurb": "Band on Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-12": {
                        "blurb": "Band on Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-13": {
                        "blurb": "Band on Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-14": {
                        "blurb": "Band on Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-15": {
                        "blurb": "Band on Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-2": {
                        "blurb": "Band on Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-3": {
                        "blurb": "Band on Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-4": {
                        "blurb": "Band on Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-5": {
                        "blurb": "Band on Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-6": {
                        "blurb": "Band on Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-7": {
                        "blurb": "Band on Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-8": {
                        "blurb": "Band on Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-9": {
                        "blurb": "Band on Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-0": {
                        "blurb": "Band on Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-1": {
                        "blurb": "Band on Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-10": {
                        "blurb": "Band on Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-11": {
                        "blurb": "Band on Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-12": {
                        "blurb": "Band on Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-13": {
                        "blurb": "Band on Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-14": {
                        "blurb": "Band on Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-15": {
                        "blurb": "Band on Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-2": {
                        "blurb": "Band on Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-3": {
                        "blurb": "Band on Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-4": {
                        "blurb": "Band on Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-5": {
                        "blurb": "Band on Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-6": {
                        "blurb": "Band on Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-7": {
                        "blurb": "Band on Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-8": {
                        "blurb": "Band on Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-9": {
                        "blurb": "Band on Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-0": {
                        "blurb": "Band mute Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-1": {
                        "blurb": "Band mute Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-10": {
                        "blurb": "Band mute Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-11": {
                        "blurb": "Band mute Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-12": {
                        "blurb": "Band mute Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-13": {
                        "blurb": "Band mute Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-14": {
                        "blurb": "Band mute Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-15": {
                        "blurb": "Band mute Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-2": {
                        "blurb": "Band mute Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-3": {
                        "blurb": "Band mute Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-4": {
                        "blurb": "Band mute Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-5": {
                        "blurb": "Band mute Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-6": {
                        "blurb": "Band mute Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-7": {
                        "blurb": "Band mute Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-8": {
                        "blurb": "Band mute Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-9": {
                        "blurb": "Band mute Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-0": {
                        "blurb": "Band mute Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-1": {
                        "blurb": "Band mute Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-10": {
                        "blurb": "Band mute Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-11": {
                        "blurb": "Band mute Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-12": {
                        "blurb": "Band mute Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-13": {
                        "blurb": "Band mute Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-14": {
                        "blurb": "Band mute Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-15": {
                        "blurb": "Band mute Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-2": {
                        "blurb": "Band mute Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-3": {
                        "blurb": "Band mute Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-4": {
                        "blurb": "Band mute Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-5": {
                        "blurb": "Band mute Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-6": {
                        "blurb": "Band mute Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-7": {
                        "blurb": "Band mute Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-8": {
                        "blurb": "Band mute Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-9": {
                        "blurb": "Band mute Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-0": {
                        "blurb": "Band solo Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-1": {
                        "blurb": "Band solo Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-10": {
                        "blurb": "Band solo Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-11": {
                        "blurb": "Band solo Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-12": {
                        "blurb": "Band solo Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-13": {
                        "blurb": "Band solo Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-14": {
                        "blurb": "Band solo Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-15": {
                        "blurb": "Band solo Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-2": {
                        "blurb": "Band solo Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-3": {
                        "blurb": "Band solo Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-4": {
                        "blurb": "Band solo Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-5": {
                        "blurb": "Band solo Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-6": {
                        "blurb": "Band solo Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-7": {
                        "blurb": "Band solo Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-8": {
                        "blurb": "Band solo Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-9": {
                        "blurb": "Band solo Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-0": {
                        "blurb": "Band solo Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-1": {
                        "blurb": "Band solo Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-10": {
                        "blurb": "Band solo Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-11": {
                        "blurb": "Band solo Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-12": {
                        "blurb": "Band solo Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-13": {
                        "blurb": "Band solo Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-14": {
                        "blurb": "Band solo Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-15": {
                        "blurb": "Band solo Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-2": {
                        "blurb": "Band solo Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-3": {
                        "blurb": "Band solo Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-4": {
                        "blurb": "Band solo Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-5": {
                        "blurb": "Band solo Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-6": {
                        "blurb": "Band solo Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-7": {
                        "blurb": "Band solo Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-8": {
                        "blurb": "Band solo Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-9": {
                        "blurb": "Band solo Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-mono": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x16 Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x16-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x16 Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-monofft",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility  16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility  25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility  1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility  2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility  4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility  6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility  10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility  16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility  40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility  63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility  100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility  160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility  250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility  400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility  630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility  1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Band gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Band gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Band gain 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Band gain 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Band gain 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Band gain 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Band gain 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Band gain 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Band gain 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Band gain 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Band gain 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Band gain 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Band gain 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Band gain 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Band gain 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Band gain 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "im": {
                        "blurb": "Input signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-monomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-monoslope",
                        "writable": true
                    },
                    "sm": {
                        "blurb": "Output signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xe-0": {
                        "blurb": "Band on 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-1": {
                        "blurb": "Band on 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-10": {
                        "blurb": "Band on 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-11": {
                        "blurb": "Band on 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-12": {
                        "blurb": "Band on 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-13": {
                        "blurb": "Band on 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-14": {
                        "blurb": "Band on 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-15": {
                        "blurb": "Band on 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-2": {
                        "blurb": "Band on 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-3": {
                        "blurb": "Band on 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-4": {
                        "blurb": "Band on 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-5": {
                        "blurb": "Band on 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-6": {
                        "blurb": "Band on 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-7": {
                        "blurb": "Band on 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-8": {
                        "blurb": "Band on 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-9": {
                        "blurb": "Band on 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-0": {
                        "blurb": "Band mute 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Band mute 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Band mute 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Band mute 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Band mute 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Band mute 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Band mute 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Band mute 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Band mute 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Band mute 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Band mute 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Band mute 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Band mute 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Band mute 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Band mute 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Band mute 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Band solo 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Band solo 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Band solo 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Band solo 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Band solo 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Band solo 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Band solo 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Band solo 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Band solo 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Band solo 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Band solo 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Band solo 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Band solo 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Band solo 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Band solo 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Band solo 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-ms": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x16 MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x16-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x16 MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msfft",
                        "writable": true
                    },
                    "fftv-m": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-s": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Band select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bands Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msfsel",
                        "writable": true
                    },
                    "fvm-0": {
                        "blurb": "Filter visibility  Mid 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-1": {
                        "blurb": "Filter visibility  Mid 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-10": {
                        "blurb": "Filter visibility  Mid 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-11": {
                        "blurb": "Filter visibility  Mid 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-12": {
                        "blurb": "Filter visibility  Mid 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-13": {
                        "blurb": "Filter visibility  Mid 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-14": {
                        "blurb": "Filter visibility  Mid 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-15": {
                        "blurb": "Filter visibility  Mid 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-2": {
                        "blurb": "Filter visibility  Mid 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-3": {
                        "blurb": "Filter visibility  Mid 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-4": {
                        "blurb": "Filter visibility  Mid 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-5": {
                        "blurb": "Filter visibility  Mid 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-6": {
                        "blurb": "Filter visibility  Mid 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-7": {
                        "blurb": "Filter visibility  Mid 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-8": {
                        "blurb": "Filter visibility  Mid 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-9": {
                        "blurb": "Filter visibility  Mid 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-0": {
                        "blurb": "Filter visibility  Side 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-1": {
                        "blurb": "Filter visibility  Side 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-10": {
                        "blurb": "Filter visibility  Side 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-11": {
                        "blurb": "Filter visibility  Side 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-12": {
                        "blurb": "Filter visibility  Side 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-13": {
                        "blurb": "Filter visibility  Side 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-14": {
                        "blurb": "Filter visibility  Side 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-15": {
                        "blurb": "Filter visibility  Side 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-2": {
                        "blurb": "Filter visibility  Side 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-3": {
                        "blurb": "Filter visibility  Side 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-4": {
                        "blurb": "Filter visibility  Side 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-5": {
                        "blurb": "Filter visibility  Side 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-6": {
                        "blurb": "Filter visibility  Side 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-7": {
                        "blurb": "Filter visibility  Side 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-8": {
                        "blurb": "Filter visibility  Side 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-9": {
                        "blurb": "Filter visibility  Side 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-m": {
                        "blurb": "Mid gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-s": {
                        "blurb": "Side gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-0": {
                        "blurb": "Band gain Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-1": {
                        "blurb": "Band gain Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-10": {
                        "blurb": "Band gain Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-11": {
                        "blurb": "Band gain Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-12": {
                        "blurb": "Band gain Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-13": {
                        "blurb": "Band gain Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-14": {
                        "blurb": "Band gain Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-15": {
                        "blurb": "Band gain Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-2": {
                        "blurb": "Band gain Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-3": {
                        "blurb": "Band gain Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-4": {
                        "blurb": "Band gain Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-5": {
                        "blurb": "Band gain Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-6": {
                        "blurb": "Band gain Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-7": {
                        "blurb": "Band gain Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-8": {
                        "blurb": "Band gain Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-9": {
                        "blurb": "Band gain Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-0": {
                        "blurb": "Band gain Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-1": {
                        "blurb": "Band gain Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-10": {
                        "blurb": "Band gain Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-11": {
                        "blurb": "Band gain Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-12": {
                        "blurb": "Band gain Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-13": {
                        "blurb": "Band gain Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-14": {
                        "blurb": "Band gain Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-15": {
                        "blurb": "Band gain Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-2": {
                        "blurb": "Band gain Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-3": {
                        "blurb": "Band gain Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-4": {
                        "blurb": "Band gain Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-5": {
                        "blurb": "Band gain Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-6": {
                        "blurb": "Band gain Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-7": {
                        "blurb": "Band gain Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-8": {
                        "blurb": "Band gain Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-9": {
                        "blurb": "Band gain Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "lstn": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msslope",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xem-0": {
                        "blurb": "Band on Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-1": {
                        "blurb": "Band on Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-10": {
                        "blurb": "Band on Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-11": {
                        "blurb": "Band on Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-12": {
                        "blurb": "Band on Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-13": {
                        "blurb": "Band on Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-14": {
                        "blurb": "Band on Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-15": {
                        "blurb": "Band on Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-2": {
                        "blurb": "Band on Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-3": {
                        "blurb": "Band on Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-4": {
                        "blurb": "Band on Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-5": {
                        "blurb": "Band on Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-6": {
                        "blurb": "Band on Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-7": {
                        "blurb": "Band on Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-8": {
                        "blurb": "Band on Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-9": {
                        "blurb": "Band on Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-0": {
                        "blurb": "Band on Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-1": {
                        "blurb": "Band on Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-10": {
                        "blurb": "Band on Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-11": {
                        "blurb": "Band on Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-12": {
                        "blurb": "Band on Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-13": {
                        "blurb": "Band on Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-14": {
                        "blurb": "Band on Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-15": {
                        "blurb": "Band on Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-2": {
                        "blurb": "Band on Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-3": {
                        "blurb": "Band on Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-4": {
                        "blurb": "Band on Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-5": {
                        "blurb": "Band on Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-6": {
                        "blurb": "Band on Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-7": {
                        "blurb": "Band on Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-8": {
                        "blurb": "Band on Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-9": {
                        "blurb": "Band on Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-0": {
                        "blurb": "Band mute Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-1": {
                        "blurb": "Band mute Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-10": {
                        "blurb": "Band mute Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-11": {
                        "blurb": "Band mute Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-12": {
                        "blurb": "Band mute Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-13": {
                        "blurb": "Band mute Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-14": {
                        "blurb": "Band mute Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-15": {
                        "blurb": "Band mute Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-2": {
                        "blurb": "Band mute Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-3": {
                        "blurb": "Band mute Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-4": {
                        "blurb": "Band mute Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-5": {
                        "blurb": "Band mute Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-6": {
                        "blurb": "Band mute Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-7": {
                        "blurb": "Band mute Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-8": {
                        "blurb": "Band mute Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-9": {
                        "blurb": "Band mute Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-0": {
                        "blurb": "Band mute Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-1": {
                        "blurb": "Band mute Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-10": {
                        "blurb": "Band mute Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-11": {
                        "blurb": "Band mute Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-12": {
                        "blurb": "Band mute Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-13": {
                        "blurb": "Band mute Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-14": {
                        "blurb": "Band mute Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-15": {
                        "blurb": "Band mute Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-2": {
                        "blurb": "Band mute Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-3": {
                        "blurb": "Band mute Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-4": {
                        "blurb": "Band mute Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-5": {
                        "blurb": "Band mute Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-6": {
                        "blurb": "Band mute Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-7": {
                        "blurb": "Band mute Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-8": {
                        "blurb": "Band mute Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-9": {
                        "blurb": "Band mute Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-0": {
                        "blurb": "Band solo Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-1": {
                        "blurb": "Band solo Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-10": {
                        "blurb": "Band solo Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-11": {
                        "blurb": "Band solo Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-12": {
                        "blurb": "Band solo Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-13": {
                        "blurb": "Band solo Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-14": {
                        "blurb": "Band solo Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-15": {
                        "blurb": "Band solo Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-2": {
                        "blurb": "Band solo Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-3": {
                        "blurb": "Band solo Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-4": {
                        "blurb": "Band solo Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-5": {
                        "blurb": "Band solo Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-6": {
                        "blurb": "Band solo Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-7": {
                        "blurb": "Band solo Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-8": {
                        "blurb": "Band solo Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-9": {
                        "blurb": "Band solo Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-0": {
                        "blurb": "Band solo Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-1": {
                        "blurb": "Band solo Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-10": {
                        "blurb": "Band solo Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-11": {
                        "blurb": "Band solo Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-12": {
                        "blurb": "Band solo Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-13": {
                        "blurb": "Band solo Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-14": {
                        "blurb": "Band solo Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-15": {
                        "blurb": "Band solo Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-2": {
                        "blurb": "Band solo Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-3": {
                        "blurb": "Band solo Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-4": {
                        "blurb": "Band solo Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-5": {
                        "blurb": "Band solo Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-6": {
                        "blurb": "Band solo Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-7": {
                        "blurb": "Band solo Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-8": {
                        "blurb": "Band solo Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-9": {
                        "blurb": "Band solo Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereo": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x16 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x16 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereofft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility  16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility  25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility  1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility  2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility  4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility  6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility  10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility  16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility  40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility  63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility  100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility  160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility  250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility  400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility  630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility  1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Band gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Band gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Band gain 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Band gain 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Band gain 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Band gain 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Band gain 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Band gain 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Band gain 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Band gain 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Band gain 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Band gain 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Band gain 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Band gain 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Band gain 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Band gain 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereoslope",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xe-0": {
                        "blurb": "Band on 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-1": {
                        "blurb": "Band on 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-10": {
                        "blurb": "Band on 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-11": {
                        "blurb": "Band on 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-12": {
                        "blurb": "Band on 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-13": {
                        "blurb": "Band on 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-14": {
                        "blurb": "Band on 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-15": {
                        "blurb": "Band on 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-2": {
                        "blurb": "Band on 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-3": {
                        "blurb": "Band on 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-4": {
                        "blurb": "Band on 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-5": {
                        "blurb": "Band on 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-6": {
                        "blurb": "Band on 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-7": {
                        "blurb": "Band on 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-8": {
                        "blurb": "Band on 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-9": {
                        "blurb": "Band on 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-0": {
                        "blurb": "Band mute 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Band mute 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Band mute 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Band mute 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Band mute 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Band mute 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Band mute 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Band mute 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Band mute 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Band mute 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Band mute 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Band mute 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Band mute 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Band mute 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Band mute 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Band mute 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Band solo 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Band solo 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Band solo 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Band solo 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Band solo 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Band solo 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Band solo 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Band solo 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Band solo 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Band solo 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Band solo 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Band solo 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Band solo 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Band solo 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Band solo 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Band solo 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lr": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x32 LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x32 LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrfft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Band select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bands Left 0-15 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrfsel",
                        "writable": true
                    },
                    "fvl-0": {
                        "blurb": "Filter visibility  Left 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-1": {
                        "blurb": "Filter visibility  Left 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-10": {
                        "blurb": "Filter visibility  Left 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-11": {
                        "blurb": "Filter visibility  Left 200",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-12": {
                        "blurb": "Filter visibility  Left 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-13": {
                        "blurb": "Filter visibility  Left 315",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-14": {
                        "blurb": "Filter visibility  Left 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-15": {
                        "blurb": "Filter visibility  Left 500",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-16": {
                        "blurb": "Filter visibility  Left 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-17": {
                        "blurb": "Filter visibility  Left 800",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-18": {
                        "blurb": "Filter visibility  Left 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-19": {
                        "blurb": "Filter visibility  Left 1.25K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-2": {
                        "blurb": "Filter visibility  Left 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-20": {
                        "blurb": "Filter visibility  Left 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-21": {
                        "blurb": "Filter visibility  Left 2K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-22": {
                        "blurb": "Filter visibility  Left 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-23": {
                        "blurb": "Filter visibility  Left 3.15K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-24": {
                        "blurb": "Filter visibility  Left 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-25": {
                        "blurb": "Filter visibility  Left 5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-26": {
                        "blurb": "Filter visibility  Left 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-27": {
                        "blurb": "Filter visibility  Left 8K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-28": {
                        "blurb": "Filter visibility  Left 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-29": {
                        "blurb": "Filter visibility  Left 12.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-3": {
                        "blurb": "Filter visibility  Left 31.5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-30": {
                        "blurb": "Filter visibility  Left 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-31": {
                        "blurb": "Filter visibility  Left 20K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-4": {
                        "blurb": "Filter visibility  Left 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-5": {
                        "blurb": "Filter visibility  Left 50",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-6": {
                        "blurb": "Filter visibility  Left 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-7": {
                        "blurb": "Filter visibility  Left 80",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-8": {
                        "blurb": "Filter visibility  Left 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-9": {
                        "blurb": "Filter visibility  Left 125",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-0": {
                        "blurb": "Filter visibility  Right 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-1": {
                        "blurb": "Filter visibility  Right 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-10": {
                        "blurb": "Filter visibility  Right 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-11": {
                        "blurb": "Filter visibility  Right 200",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-12": {
                        "blurb": "Filter visibility  Right 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-13": {
                        "blurb": "Filter visibility  Right 315",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-14": {
                        "blurb": "Filter visibility  Right 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-15": {
                        "blurb": "Filter visibility  Right 500",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-16": {
                        "blurb": "Filter visibility  Right 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-17": {
                        "blurb": "Filter visibility  Right 800",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-18": {
                        "blurb": "Filter visibility  Right 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-19": {
                        "blurb": "Filter visibility  Right 1.25K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-2": {
                        "blurb": "Filter visibility  Right 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-20": {
                        "blurb": "Filter visibility  Right 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-21": {
                        "blurb": "Filter visibility  Right 2K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-22": {
                        "blurb": "Filter visibility  Right 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-23": {
                        "blurb": "Filter visibility  Right 3.15K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-24": {
                        "blurb": "Filter visibility  Right 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-25": {
                        "blurb": "Filter visibility  Right 5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-26": {
                        "blurb": "Filter visibility  Right 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-27": {
                        "blurb": "Filter visibility  Right 8K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-28": {
                        "blurb": "Filter visibility  Right 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-29": {
                        "blurb": "Filter visibility  Right 12.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-3": {
                        "blurb": "Filter visibility  Right 31.5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-30": {
                        "blurb": "Filter visibility  Right 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-31": {
                        "blurb": "Filter visibility  Right 20K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-4": {
                        "blurb": "Filter visibility  Right 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-5": {
                        "blurb": "Filter visibility  Right 50",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-6": {
                        "blurb": "Filter visibility  Right 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-7": {
                        "blurb": "Filter visibility  Right 80",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-8": {
                        "blurb": "Filter visibility  Right 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-9": {
                        "blurb": "Filter visibility  Right 125",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-0": {
                        "blurb": "Band gain Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-1": {
                        "blurb": "Band gain Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-10": {
                        "blurb": "Band gain Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-11": {
                        "blurb": "Band gain Left 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-12": {
                        "blurb": "Band gain Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-13": {
                        "blurb": "Band gain Left 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-14": {
                        "blurb": "Band gain Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-15": {
                        "blurb": "Band gain Left 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-16": {
                        "blurb": "Band gain Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-17": {
                        "blurb": "Band gain Left 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-18": {
                        "blurb": "Band gain Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-19": {
                        "blurb": "Band gain Left 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-2": {
                        "blurb": "Band gain Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-20": {
                        "blurb": "Band gain Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-21": {
                        "blurb": "Band gain Left 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-22": {
                        "blurb": "Band gain Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-23": {
                        "blurb": "Band gain Left 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-24": {
                        "blurb": "Band gain Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-25": {
                        "blurb": "Band gain Left 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-26": {
                        "blurb": "Band gain Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-27": {
                        "blurb": "Band gain Left 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-28": {
                        "blurb": "Band gain Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-29": {
                        "blurb": "Band gain Left 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-3": {
                        "blurb": "Band gain Left 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-30": {
                        "blurb": "Band gain Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-31": {
                        "blurb": "Band gain Left 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-4": {
                        "blurb": "Band gain Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-5": {
                        "blurb": "Band gain Left 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-6": {
                        "blurb": "Band gain Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-7": {
                        "blurb": "Band gain Left 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-8": {
                        "blurb": "Band gain Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-9": {
                        "blurb": "Band gain Left 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-0": {
                        "blurb": "Band gain Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-1": {
                        "blurb": "Band gain Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-10": {
                        "blurb": "Band gain Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-11": {
                        "blurb": "Band gain Right 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-12": {
                        "blurb": "Band gain Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-13": {
                        "blurb": "Band gain Right 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-14": {
                        "blurb": "Band gain Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-15": {
                        "blurb": "Band gain Right 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-16": {
                        "blurb": "Band gain Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-17": {
                        "blurb": "Band gain Right 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-18": {
                        "blurb": "Band gain Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-19": {
                        "blurb": "Band gain Right 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-2": {
                        "blurb": "Band gain Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-20": {
                        "blurb": "Band gain Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-21": {
                        "blurb": "Band gain Right 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-22": {
                        "blurb": "Band gain Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-23": {
                        "blurb": "Band gain Right 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-24": {
                        "blurb": "Band gain Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-25": {
                        "blurb": "Band gain Right 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-26": {
                        "blurb": "Band gain Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-27": {
                        "blurb": "Band gain Right 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-28": {
                        "blurb": "Band gain Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-29": {
                        "blurb": "Band gain Right 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-3": {
                        "blurb": "Band gain Right 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-30": {
                        "blurb": "Band gain Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-31": {
                        "blurb": "Band gain Right 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-4": {
                        "blurb": "Band gain Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-5": {
                        "blurb": "Band gain Right 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-6": {
                        "blurb": "Band gain Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-7": {
                        "blurb": "Band gain Right 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-8": {
                        "blurb": "Band gain Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-9": {
                        "blurb": "Band gain Right 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrslope",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xel-0": {
                        "blurb": "Band on Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-1": {
                        "blurb": "Band on Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-10": {
                        "blurb": "Band on Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-11": {
                        "blurb": "Band on Left 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-12": {
                        "blurb": "Band on Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-13": {
                        "blurb": "Band on Left 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-14": {
                        "blurb": "Band on Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-15": {
                        "blurb": "Band on Left 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-16": {
                        "blurb": "Band on Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-17": {
                        "blurb": "Band on Left 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-18": {
                        "blurb": "Band on Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-19": {
                        "blurb": "Band on Left 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-2": {
                        "blurb": "Band on Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-20": {
                        "blurb": "Band on Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-21": {
                        "blurb": "Band on Left 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-22": {
                        "blurb": "Band on Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-23": {
                        "blurb": "Band on Left 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-24": {
                        "blurb": "Band on Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-25": {
                        "blurb": "Band on Left 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-26": {
                        "blurb": "Band on Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-27": {
                        "blurb": "Band on Left 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-28": {
                        "blurb": "Band on Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-29": {
                        "blurb": "Band on Left 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-3": {
                        "blurb": "Band on Left 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-30": {
                        "blurb": "Band on Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-31": {
                        "blurb": "Band on Left 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-4": {
                        "blurb": "Band on Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-5": {
                        "blurb": "Band on Left 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-6": {
                        "blurb": "Band on Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-7": {
                        "blurb": "Band on Left 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-8": {
                        "blurb": "Band on Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xel-9": {
                        "blurb": "Band on Left 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-0": {
                        "blurb": "Band on Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-1": {
                        "blurb": "Band on Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-10": {
                        "blurb": "Band on Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-11": {
                        "blurb": "Band on Right 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-12": {
                        "blurb": "Band on Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-13": {
                        "blurb": "Band on Right 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-14": {
                        "blurb": "Band on Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-15": {
                        "blurb": "Band on Right 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-16": {
                        "blurb": "Band on Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-17": {
                        "blurb": "Band on Right 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-18": {
                        "blurb": "Band on Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-19": {
                        "blurb": "Band on Right 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-2": {
                        "blurb": "Band on Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-20": {
                        "blurb": "Band on Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-21": {
                        "blurb": "Band on Right 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-22": {
                        "blurb": "Band on Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-23": {
                        "blurb": "Band on Right 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-24": {
                        "blurb": "Band on Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-25": {
                        "blurb": "Band on Right 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-26": {
                        "blurb": "Band on Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-27": {
                        "blurb": "Band on Right 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-28": {
                        "blurb": "Band on Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-29": {
                        "blurb": "Band on Right 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-3": {
                        "blurb": "Band on Right 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-30": {
                        "blurb": "Band on Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-31": {
                        "blurb": "Band on Right 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-4": {
                        "blurb": "Band on Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-5": {
                        "blurb": "Band on Right 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-6": {
                        "blurb": "Band on Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-7": {
                        "blurb": "Band on Right 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-8": {
                        "blurb": "Band on Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xer-9": {
                        "blurb": "Band on Right 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-0": {
                        "blurb": "Band mute Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-1": {
                        "blurb": "Band mute Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-10": {
                        "blurb": "Band mute Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-11": {
                        "blurb": "Band mute Left 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-12": {
                        "blurb": "Band mute Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-13": {
                        "blurb": "Band mute Left 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-14": {
                        "blurb": "Band mute Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-15": {
                        "blurb": "Band mute Left 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-16": {
                        "blurb": "Band mute Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-17": {
                        "blurb": "Band mute Left 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-18": {
                        "blurb": "Band mute Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-19": {
                        "blurb": "Band mute Left 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-2": {
                        "blurb": "Band mute Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-20": {
                        "blurb": "Band mute Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-21": {
                        "blurb": "Band mute Left 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-22": {
                        "blurb": "Band mute Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-23": {
                        "blurb": "Band mute Left 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-24": {
                        "blurb": "Band mute Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-25": {
                        "blurb": "Band mute Left 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-26": {
                        "blurb": "Band mute Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-27": {
                        "blurb": "Band mute Left 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-28": {
                        "blurb": "Band mute Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-29": {
                        "blurb": "Band mute Left 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-3": {
                        "blurb": "Band mute Left 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-30": {
                        "blurb": "Band mute Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-31": {
                        "blurb": "Band mute Left 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-4": {
                        "blurb": "Band mute Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-5": {
                        "blurb": "Band mute Left 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-6": {
                        "blurb": "Band mute Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-7": {
                        "blurb": "Band mute Left 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-8": {
                        "blurb": "Band mute Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-9": {
                        "blurb": "Band mute Left 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-0": {
                        "blurb": "Band mute Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-1": {
                        "blurb": "Band mute Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-10": {
                        "blurb": "Band mute Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-11": {
                        "blurb": "Band mute Right 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-12": {
                        "blurb": "Band mute Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-13": {
                        "blurb": "Band mute Right 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-14": {
                        "blurb": "Band mute Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-15": {
                        "blurb": "Band mute Right 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-16": {
                        "blurb": "Band mute Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-17": {
                        "blurb": "Band mute Right 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-18": {
                        "blurb": "Band mute Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-19": {
                        "blurb": "Band mute Right 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-2": {
                        "blurb": "Band mute Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-20": {
                        "blurb": "Band mute Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-21": {
                        "blurb": "Band mute Right 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-22": {
                        "blurb": "Band mute Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-23": {
                        "blurb": "Band mute Right 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-24": {
                        "blurb": "Band mute Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-25": {
                        "blurb": "Band mute Right 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-26": {
                        "blurb": "Band mute Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-27": {
                        "blurb": "Band mute Right 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-28": {
                        "blurb": "Band mute Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-29": {
                        "blurb": "Band mute Right 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-3": {
                        "blurb": "Band mute Right 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-30": {
                        "blurb": "Band mute Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-31": {
                        "blurb": "Band mute Right 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-4": {
                        "blurb": "Band mute Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-5": {
                        "blurb": "Band mute Right 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-6": {
                        "blurb": "Band mute Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-7": {
                        "blurb": "Band mute Right 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-8": {
                        "blurb": "Band mute Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-9": {
                        "blurb": "Band mute Right 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-0": {
                        "blurb": "Band solo Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-1": {
                        "blurb": "Band solo Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-10": {
                        "blurb": "Band solo Left 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-11": {
                        "blurb": "Band solo Left 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-12": {
                        "blurb": "Band solo Left 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-13": {
                        "blurb": "Band solo Left 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-14": {
                        "blurb": "Band solo Left 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-15": {
                        "blurb": "Band solo Left 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-16": {
                        "blurb": "Band solo Left 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-17": {
                        "blurb": "Band solo Left 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-18": {
                        "blurb": "Band solo Left 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-19": {
                        "blurb": "Band solo Left 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-2": {
                        "blurb": "Band solo Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-20": {
                        "blurb": "Band solo Left 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-21": {
                        "blurb": "Band solo Left 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-22": {
                        "blurb": "Band solo Left 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-23": {
                        "blurb": "Band solo Left 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-24": {
                        "blurb": "Band solo Left 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-25": {
                        "blurb": "Band solo Left 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-26": {
                        "blurb": "Band solo Left 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-27": {
                        "blurb": "Band solo Left 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-28": {
                        "blurb": "Band solo Left 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-29": {
                        "blurb": "Band solo Left 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-3": {
                        "blurb": "Band solo Left 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-30": {
                        "blurb": "Band solo Left 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-31": {
                        "blurb": "Band solo Left 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-4": {
                        "blurb": "Band solo Left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-5": {
                        "blurb": "Band solo Left 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-6": {
                        "blurb": "Band solo Left 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-7": {
                        "blurb": "Band solo Left 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-8": {
                        "blurb": "Band solo Left 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-9": {
                        "blurb": "Band solo Left 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-0": {
                        "blurb": "Band solo Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-1": {
                        "blurb": "Band solo Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-10": {
                        "blurb": "Band solo Right 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-11": {
                        "blurb": "Band solo Right 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-12": {
                        "blurb": "Band solo Right 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-13": {
                        "blurb": "Band solo Right 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-14": {
                        "blurb": "Band solo Right 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-15": {
                        "blurb": "Band solo Right 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-16": {
                        "blurb": "Band solo Right 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-17": {
                        "blurb": "Band solo Right 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-18": {
                        "blurb": "Band solo Right 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-19": {
                        "blurb": "Band solo Right 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-2": {
                        "blurb": "Band solo Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-20": {
                        "blurb": "Band solo Right 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-21": {
                        "blurb": "Band solo Right 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-22": {
                        "blurb": "Band solo Right 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-23": {
                        "blurb": "Band solo Right 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-24": {
                        "blurb": "Band solo Right 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-25": {
                        "blurb": "Band solo Right 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-26": {
                        "blurb": "Band solo Right 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-27": {
                        "blurb": "Band solo Right 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-28": {
                        "blurb": "Band solo Right 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-29": {
                        "blurb": "Band solo Right 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-3": {
                        "blurb": "Band solo Right 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-30": {
                        "blurb": "Band solo Right 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-31": {
                        "blurb": "Band solo Right 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-4": {
                        "blurb": "Band solo Right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-5": {
                        "blurb": "Band solo Right 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-6": {
                        "blurb": "Band solo Right 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-7": {
                        "blurb": "Band solo Right 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-8": {
                        "blurb": "Band solo Right 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-9": {
                        "blurb": "Band solo Right 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-mono": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x32 Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x32-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x32 Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monofft",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Band select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bands 0-15 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monofsel",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility  16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility  20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility  160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility  200",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility  250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility  315",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility  400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility  500",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-16": {
                        "blurb": "Filter visibility  630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-17": {
                        "blurb": "Filter visibility  800",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-18": {
                        "blurb": "Filter visibility  1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-19": {
                        "blurb": "Filter visibility  1.25K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility  25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-20": {
                        "blurb": "Filter visibility  1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-21": {
                        "blurb": "Filter visibility  2K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-22": {
                        "blurb": "Filter visibility  2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-23": {
                        "blurb": "Filter visibility  3.15K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-24": {
                        "blurb": "Filter visibility  4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-25": {
                        "blurb": "Filter visibility  5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-26": {
                        "blurb": "Filter visibility  6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-27": {
                        "blurb": "Filter visibility  8K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-28": {
                        "blurb": "Filter visibility  10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-29": {
                        "blurb": "Filter visibility  12.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility  31.5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-30": {
                        "blurb": "Filter visibility  16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-31": {
                        "blurb": "Filter visibility  20K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility  40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility  50",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility  63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility  80",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility  100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility  125",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Band gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Band gain 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Band gain 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Band gain 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Band gain 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Band gain 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Band gain 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Band gain 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-16": {
                        "blurb": "Band gain 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-17": {
                        "blurb": "Band gain 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-18": {
                        "blurb": "Band gain 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-19": {
                        "blurb": "Band gain 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Band gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-20": {
                        "blurb": "Band gain 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-21": {
                        "blurb": "Band gain 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-22": {
                        "blurb": "Band gain 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-23": {
                        "blurb": "Band gain 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-24": {
                        "blurb": "Band gain 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-25": {
                        "blurb": "Band gain 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-26": {
                        "blurb": "Band gain 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-27": {
                        "blurb": "Band gain 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-28": {
                        "blurb": "Band gain 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-29": {
                        "blurb": "Band gain 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Band gain 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-30": {
                        "blurb": "Band gain 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-31": {
                        "blurb": "Band gain 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Band gain 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Band gain 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Band gain 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Band gain 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Band gain 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Band gain 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "im": {
                        "blurb": "Input signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monoslope",
                        "writable": true
                    },
                    "sm": {
                        "blurb": "Output signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xe-0": {
                        "blurb": "Band on 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-1": {
                        "blurb": "Band on 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-10": {
                        "blurb": "Band on 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-11": {
                        "blurb": "Band on 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-12": {
                        "blurb": "Band on 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-13": {
                        "blurb": "Band on 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-14": {
                        "blurb": "Band on 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-15": {
                        "blurb": "Band on 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-16": {
                        "blurb": "Band on 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-17": {
                        "blurb": "Band on 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-18": {
                        "blurb": "Band on 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-19": {
                        "blurb": "Band on 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-2": {
                        "blurb": "Band on 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-20": {
                        "blurb": "Band on 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-21": {
                        "blurb": "Band on 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-22": {
                        "blurb": "Band on 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-23": {
                        "blurb": "Band on 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-24": {
                        "blurb": "Band on 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-25": {
                        "blurb": "Band on 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-26": {
                        "blurb": "Band on 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-27": {
                        "blurb": "Band on 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-28": {
                        "blurb": "Band on 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-29": {
                        "blurb": "Band on 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-3": {
                        "blurb": "Band on 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-30": {
                        "blurb": "Band on 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-31": {
                        "blurb": "Band on 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-4": {
                        "blurb": "Band on 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-5": {
                        "blurb": "Band on 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-6": {
                        "blurb": "Band on 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-7": {
                        "blurb": "Band on 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-8": {
                        "blurb": "Band on 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-9": {
                        "blurb": "Band on 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-0": {
                        "blurb": "Band mute 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Band mute 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Band mute 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Band mute 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Band mute 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Band mute 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Band mute 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Band mute 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-16": {
                        "blurb": "Band mute 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-17": {
                        "blurb": "Band mute 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-18": {
                        "blurb": "Band mute 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-19": {
                        "blurb": "Band mute 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Band mute 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-20": {
                        "blurb": "Band mute 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-21": {
                        "blurb": "Band mute 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-22": {
                        "blurb": "Band mute 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-23": {
                        "blurb": "Band mute 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-24": {
                        "blurb": "Band mute 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-25": {
                        "blurb": "Band mute 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-26": {
                        "blurb": "Band mute 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-27": {
                        "blurb": "Band mute 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-28": {
                        "blurb": "Band mute 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-29": {
                        "blurb": "Band mute 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Band mute 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-30": {
                        "blurb": "Band mute 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-31": {
                        "blurb": "Band mute 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Band mute 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Band mute 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Band mute 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Band mute 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Band mute 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Band mute 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Band solo 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Band solo 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Band solo 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Band solo 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Band solo 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Band solo 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Band solo 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Band solo 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-16": {
                        "blurb": "Band solo 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-17": {
                        "blurb": "Band solo 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-18": {
                        "blurb": "Band solo 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-19": {
                        "blurb": "Band solo 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Band solo 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-20": {
                        "blurb": "Band solo 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-21": {
                        "blurb": "Band solo 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-22": {
                        "blurb": "Band solo 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-23": {
                        "blurb": "Band solo 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-24": {
                        "blurb": "Band solo 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-25": {
                        "blurb": "Band solo 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-26": {
                        "blurb": "Band solo 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-27": {
                        "blurb": "Band solo 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-28": {
                        "blurb": "Band solo 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-29": {
                        "blurb": "Band solo 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Band solo 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-30": {
                        "blurb": "Band solo 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-31": {
                        "blurb": "Band solo 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Band solo 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Band solo 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Band solo 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Band solo 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Band solo 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Band solo 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-ms": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x32 MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x32-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x32 MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msfft",
                        "writable": true
                    },
                    "fftv-m": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-s": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Band select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bands Middle 0-15 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msfsel",
                        "writable": true
                    },
                    "fvm-0": {
                        "blurb": "Filter visibility  Mid 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-1": {
                        "blurb": "Filter visibility  Mid 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-10": {
                        "blurb": "Filter visibility  Mid 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-11": {
                        "blurb": "Filter visibility  Mid 200",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-12": {
                        "blurb": "Filter visibility  Mid 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-13": {
                        "blurb": "Filter visibility  Mid 315",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-14": {
                        "blurb": "Filter visibility  Mid 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-15": {
                        "blurb": "Filter visibility  Mid 500",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-16": {
                        "blurb": "Filter visibility  Mid 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-17": {
                        "blurb": "Filter visibility  Mid 800",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-18": {
                        "blurb": "Filter visibility  Mid 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-19": {
                        "blurb": "Filter visibility  Mid 1.25K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-2": {
                        "blurb": "Filter visibility  Mid 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-20": {
                        "blurb": "Filter visibility  Mid 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-21": {
                        "blurb": "Filter visibility  Mid 2K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-22": {
                        "blurb": "Filter visibility  Mid 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-23": {
                        "blurb": "Filter visibility  Mid 3.15K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-24": {
                        "blurb": "Filter visibility  Mid 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-25": {
                        "blurb": "Filter visibility  Mid 5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-26": {
                        "blurb": "Filter visibility  Mid 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-27": {
                        "blurb": "Filter visibility  Mid 8K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-28": {
                        "blurb": "Filter visibility  Mid 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-29": {
                        "blurb": "Filter visibility  Mid 12.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-3": {
                        "blurb": "Filter visibility  Mid 31.5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-30": {
                        "blurb": "Filter visibility  Mid 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-31": {
                        "blurb": "Filter visibility  Mid 20K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-4": {
                        "blurb": "Filter visibility  Mid 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-5": {
                        "blurb": "Filter visibility  Mid 50",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-6": {
                        "blurb": "Filter visibility  Mid 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-7": {
                        "blurb": "Filter visibility  Mid 80",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-8": {
                        "blurb": "Filter visibility  Mid 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-9": {
                        "blurb": "Filter visibility  Mid 125",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-0": {
                        "blurb": "Filter visibility  Side 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-1": {
                        "blurb": "Filter visibility  Side 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-10": {
                        "blurb": "Filter visibility  Side 160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-11": {
                        "blurb": "Filter visibility  Side 200",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-12": {
                        "blurb": "Filter visibility  Side 250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-13": {
                        "blurb": "Filter visibility  Side 315",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-14": {
                        "blurb": "Filter visibility  Side 400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-15": {
                        "blurb": "Filter visibility  Side 500",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-16": {
                        "blurb": "Filter visibility  Side 630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-17": {
                        "blurb": "Filter visibility  Side 800",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-18": {
                        "blurb": "Filter visibility  Side 1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-19": {
                        "blurb": "Filter visibility  Side 1.25K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-2": {
                        "blurb": "Filter visibility  Side 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-20": {
                        "blurb": "Filter visibility  Side 1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-21": {
                        "blurb": "Filter visibility  Side 2K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-22": {
                        "blurb": "Filter visibility  Side 2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-23": {
                        "blurb": "Filter visibility  Side 3.15K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-24": {
                        "blurb": "Filter visibility  Side 4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-25": {
                        "blurb": "Filter visibility  Side 5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-26": {
                        "blurb": "Filter visibility  Side 6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-27": {
                        "blurb": "Filter visibility  Side 8K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-28": {
                        "blurb": "Filter visibility  Side 10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-29": {
                        "blurb": "Filter visibility  Side 12.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-3": {
                        "blurb": "Filter visibility  Side 31.5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-30": {
                        "blurb": "Filter visibility  Side 16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-31": {
                        "blurb": "Filter visibility  Side 20K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-4": {
                        "blurb": "Filter visibility  Side 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-5": {
                        "blurb": "Filter visibility  Side 50",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-6": {
                        "blurb": "Filter visibility  Side 63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-7": {
                        "blurb": "Filter visibility  Side 80",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-8": {
                        "blurb": "Filter visibility  Side 100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-9": {
                        "blurb": "Filter visibility  Side 125",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-m": {
                        "blurb": "Mid gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-s": {
                        "blurb": "Side gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-0": {
                        "blurb": "Band gain Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-1": {
                        "blurb": "Band gain Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-10": {
                        "blurb": "Band gain Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-11": {
                        "blurb": "Band gain Mid 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-12": {
                        "blurb": "Band gain Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-13": {
                        "blurb": "Band gain Mid 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-14": {
                        "blurb": "Band gain Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-15": {
                        "blurb": "Band gain Mid 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-16": {
                        "blurb": "Band gain Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-17": {
                        "blurb": "Band gain Mid 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-18": {
                        "blurb": "Band gain Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-19": {
                        "blurb": "Band gain Mid 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-2": {
                        "blurb": "Band gain Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-20": {
                        "blurb": "Band gain Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-21": {
                        "blurb": "Band gain Mid 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-22": {
                        "blurb": "Band gain Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-23": {
                        "blurb": "Band gain Mid 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-24": {
                        "blurb": "Band gain Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-25": {
                        "blurb": "Band gain Mid 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-26": {
                        "blurb": "Band gain Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-27": {
                        "blurb": "Band gain Mid 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-28": {
                        "blurb": "Band gain Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-29": {
                        "blurb": "Band gain Mid 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-3": {
                        "blurb": "Band gain Mid 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-30": {
                        "blurb": "Band gain Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-31": {
                        "blurb": "Band gain Mid 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-4": {
                        "blurb": "Band gain Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-5": {
                        "blurb": "Band gain Mid 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-6": {
                        "blurb": "Band gain Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-7": {
                        "blurb": "Band gain Mid 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-8": {
                        "blurb": "Band gain Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-9": {
                        "blurb": "Band gain Mid 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-0": {
                        "blurb": "Band gain Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-1": {
                        "blurb": "Band gain Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-10": {
                        "blurb": "Band gain Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-11": {
                        "blurb": "Band gain Side 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-12": {
                        "blurb": "Band gain Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-13": {
                        "blurb": "Band gain Side 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-14": {
                        "blurb": "Band gain Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-15": {
                        "blurb": "Band gain Side 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-16": {
                        "blurb": "Band gain Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-17": {
                        "blurb": "Band gain Side 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-18": {
                        "blurb": "Band gain Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-19": {
                        "blurb": "Band gain Side 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-2": {
                        "blurb": "Band gain Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-20": {
                        "blurb": "Band gain Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-21": {
                        "blurb": "Band gain Side 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-22": {
                        "blurb": "Band gain Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-23": {
                        "blurb": "Band gain Side 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-24": {
                        "blurb": "Band gain Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-25": {
                        "blurb": "Band gain Side 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-26": {
                        "blurb": "Band gain Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-27": {
                        "blurb": "Band gain Side 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-28": {
                        "blurb": "Band gain Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-29": {
                        "blurb": "Band gain Side 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-3": {
                        "blurb": "Band gain Side 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-30": {
                        "blurb": "Band gain Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-31": {
                        "blurb": "Band gain Side 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-4": {
                        "blurb": "Band gain Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-5": {
                        "blurb": "Band gain Side 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-6": {
                        "blurb": "Band gain Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-7": {
                        "blurb": "Band gain Side 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-8": {
                        "blurb": "Band gain Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-9": {
                        "blurb": "Band gain Side 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "lstn": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msslope",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xem-0": {
                        "blurb": "Band on Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-1": {
                        "blurb": "Band on Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-10": {
                        "blurb": "Band on Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-11": {
                        "blurb": "Band on Mid 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-12": {
                        "blurb": "Band on Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-13": {
                        "blurb": "Band on Mid 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-14": {
                        "blurb": "Band on Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-15": {
                        "blurb": "Band on Mid 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-16": {
                        "blurb": "Band on Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-17": {
                        "blurb": "Band on Mid 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-18": {
                        "blurb": "Band on Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-19": {
                        "blurb": "Band on Mid 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-2": {
                        "blurb": "Band on Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-20": {
                        "blurb": "Band on Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-21": {
                        "blurb": "Band on Mid 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-22": {
                        "blurb": "Band on Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-23": {
                        "blurb": "Band on Mid 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-24": {
                        "blurb": "Band on Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-25": {
                        "blurb": "Band on Mid 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-26": {
                        "blurb": "Band on Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-27": {
                        "blurb": "Band on Mid 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-28": {
                        "blurb": "Band on Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-29": {
                        "blurb": "Band on Mid 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-3": {
                        "blurb": "Band on Mid 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-30": {
                        "blurb": "Band on Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-31": {
                        "blurb": "Band on Mid 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-4": {
                        "blurb": "Band on Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-5": {
                        "blurb": "Band on Mid 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-6": {
                        "blurb": "Band on Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-7": {
                        "blurb": "Band on Mid 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-8": {
                        "blurb": "Band on Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xem-9": {
                        "blurb": "Band on Mid 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-0": {
                        "blurb": "Band on Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-1": {
                        "blurb": "Band on Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-10": {
                        "blurb": "Band on Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-11": {
                        "blurb": "Band on Side 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-12": {
                        "blurb": "Band on Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-13": {
                        "blurb": "Band on Side 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-14": {
                        "blurb": "Band on Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-15": {
                        "blurb": "Band on Side 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-16": {
                        "blurb": "Band on Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-17": {
                        "blurb": "Band on Side 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-18": {
                        "blurb": "Band on Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-19": {
                        "blurb": "Band on Side 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-2": {
                        "blurb": "Band on Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-20": {
                        "blurb": "Band on Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-21": {
                        "blurb": "Band on Side 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-22": {
                        "blurb": "Band on Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-23": {
                        "blurb": "Band on Side 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-24": {
                        "blurb": "Band on Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-25": {
                        "blurb": "Band on Side 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-26": {
                        "blurb": "Band on Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-27": {
                        "blurb": "Band on Side 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-28": {
                        "blurb": "Band on Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-29": {
                        "blurb": "Band on Side 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-3": {
                        "blurb": "Band on Side 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-30": {
                        "blurb": "Band on Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-31": {
                        "blurb": "Band on Side 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-4": {
                        "blurb": "Band on Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-5": {
                        "blurb": "Band on Side 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-6": {
                        "blurb": "Band on Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-7": {
                        "blurb": "Band on Side 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-8": {
                        "blurb": "Band on Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xes-9": {
                        "blurb": "Band on Side 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-0": {
                        "blurb": "Band mute Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-1": {
                        "blurb": "Band mute Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-10": {
                        "blurb": "Band mute Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-11": {
                        "blurb": "Band mute Mid 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-12": {
                        "blurb": "Band mute Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-13": {
                        "blurb": "Band mute Mid 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-14": {
                        "blurb": "Band mute Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-15": {
                        "blurb": "Band mute Mid 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-16": {
                        "blurb": "Band mute Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-17": {
                        "blurb": "Band mute Mid 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-18": {
                        "blurb": "Band mute Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-19": {
                        "blurb": "Band mute Mid 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-2": {
                        "blurb": "Band mute Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-20": {
                        "blurb": "Band mute Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-21": {
                        "blurb": "Band mute Mid 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-22": {
                        "blurb": "Band mute Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-23": {
                        "blurb": "Band mute Mid 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-24": {
                        "blurb": "Band mute Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-25": {
                        "blurb": "Band mute Mid 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-26": {
                        "blurb": "Band mute Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-27": {
                        "blurb": "Band mute Mid 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-28": {
                        "blurb": "Band mute Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-29": {
                        "blurb": "Band mute Mid 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-3": {
                        "blurb": "Band mute Mid 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-30": {
                        "blurb": "Band mute Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-31": {
                        "blurb": "Band mute Mid 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-4": {
                        "blurb": "Band mute Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-5": {
                        "blurb": "Band mute Mid 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-6": {
                        "blurb": "Band mute Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-7": {
                        "blurb": "Band mute Mid 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-8": {
                        "blurb": "Band mute Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-9": {
                        "blurb": "Band mute Mid 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-0": {
                        "blurb": "Band mute Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-1": {
                        "blurb": "Band mute Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-10": {
                        "blurb": "Band mute Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-11": {
                        "blurb": "Band mute Side 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-12": {
                        "blurb": "Band mute Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-13": {
                        "blurb": "Band mute Side 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-14": {
                        "blurb": "Band mute Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-15": {
                        "blurb": "Band mute Side 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-16": {
                        "blurb": "Band mute Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-17": {
                        "blurb": "Band mute Side 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-18": {
                        "blurb": "Band mute Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-19": {
                        "blurb": "Band mute Side 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-2": {
                        "blurb": "Band mute Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-20": {
                        "blurb": "Band mute Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-21": {
                        "blurb": "Band mute Side 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-22": {
                        "blurb": "Band mute Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-23": {
                        "blurb": "Band mute Side 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-24": {
                        "blurb": "Band mute Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-25": {
                        "blurb": "Band mute Side 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-26": {
                        "blurb": "Band mute Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-27": {
                        "blurb": "Band mute Side 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-28": {
                        "blurb": "Band mute Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-29": {
                        "blurb": "Band mute Side 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-3": {
                        "blurb": "Band mute Side 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-30": {
                        "blurb": "Band mute Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-31": {
                        "blurb": "Band mute Side 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-4": {
                        "blurb": "Band mute Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-5": {
                        "blurb": "Band mute Side 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-6": {
                        "blurb": "Band mute Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-7": {
                        "blurb": "Band mute Side 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-8": {
                        "blurb": "Band mute Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-9": {
                        "blurb": "Band mute Side 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-0": {
                        "blurb": "Band solo Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-1": {
                        "blurb": "Band solo Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-10": {
                        "blurb": "Band solo Mid 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-11": {
                        "blurb": "Band solo Mid 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-12": {
                        "blurb": "Band solo Mid 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-13": {
                        "blurb": "Band solo Mid 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-14": {
                        "blurb": "Band solo Mid 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-15": {
                        "blurb": "Band solo Mid 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-16": {
                        "blurb": "Band solo Mid 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-17": {
                        "blurb": "Band solo Mid 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-18": {
                        "blurb": "Band solo Mid 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-19": {
                        "blurb": "Band solo Mid 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-2": {
                        "blurb": "Band solo Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-20": {
                        "blurb": "Band solo Mid 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-21": {
                        "blurb": "Band solo Mid 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-22": {
                        "blurb": "Band solo Mid 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-23": {
                        "blurb": "Band solo Mid 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-24": {
                        "blurb": "Band solo Mid 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-25": {
                        "blurb": "Band solo Mid 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-26": {
                        "blurb": "Band solo Mid 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-27": {
                        "blurb": "Band solo Mid 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-28": {
                        "blurb": "Band solo Mid 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-29": {
                        "blurb": "Band solo Mid 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-3": {
                        "blurb": "Band solo Mid 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-30": {
                        "blurb": "Band solo Mid 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-31": {
                        "blurb": "Band solo Mid 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-4": {
                        "blurb": "Band solo Mid 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-5": {
                        "blurb": "Band solo Mid 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-6": {
                        "blurb": "Band solo Mid 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-7": {
                        "blurb": "Band solo Mid 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-8": {
                        "blurb": "Band solo Mid 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-9": {
                        "blurb": "Band solo Mid 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-0": {
                        "blurb": "Band solo Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-1": {
                        "blurb": "Band solo Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-10": {
                        "blurb": "Band solo Side 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-11": {
                        "blurb": "Band solo Side 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-12": {
                        "blurb": "Band solo Side 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-13": {
                        "blurb": "Band solo Side 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-14": {
                        "blurb": "Band solo Side 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-15": {
                        "blurb": "Band solo Side 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-16": {
                        "blurb": "Band solo Side 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-17": {
                        "blurb": "Band solo Side 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-18": {
                        "blurb": "Band solo Side 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-19": {
                        "blurb": "Band solo Side 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-2": {
                        "blurb": "Band solo Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-20": {
                        "blurb": "Band solo Side 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-21": {
                        "blurb": "Band solo Side 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-22": {
                        "blurb": "Band solo Side 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-23": {
                        "blurb": "Band solo Side 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-24": {
                        "blurb": "Band solo Side 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-25": {
                        "blurb": "Band solo Side 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-26": {
                        "blurb": "Band solo Side 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-27": {
                        "blurb": "Band solo Side 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-28": {
                        "blurb": "Band solo Side 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-29": {
                        "blurb": "Band solo Side 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-3": {
                        "blurb": "Band solo Side 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-30": {
                        "blurb": "Band solo Side 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-31": {
                        "blurb": "Band solo Side 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-4": {
                        "blurb": "Band solo Side 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-5": {
                        "blurb": "Band solo Side 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-6": {
                        "blurb": "Band solo Side 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-7": {
                        "blurb": "Band solo Side 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-8": {
                        "blurb": "Band solo Side 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-9": {
                        "blurb": "Band solo Side 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereo": {
                "author": "LSP LV2",
                "description": "LSP Graphic Equalizer x32 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Multiband",
                "long-name": "LSP Graphic Equalizer x32 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereofft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Band select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bands 0-15 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereofsel",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility  16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility  20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility  160",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility  200",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility  250",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility  315",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility  400",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility  500",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-16": {
                        "blurb": "Filter visibility  630",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-17": {
                        "blurb": "Filter visibility  800",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-18": {
                        "blurb": "Filter visibility  1K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-19": {
                        "blurb": "Filter visibility  1.25K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility  25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-20": {
                        "blurb": "Filter visibility  1.6K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-21": {
                        "blurb": "Filter visibility  2K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-22": {
                        "blurb": "Filter visibility  2.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-23": {
                        "blurb": "Filter visibility  3.15K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-24": {
                        "blurb": "Filter visibility  4K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-25": {
                        "blurb": "Filter visibility  5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-26": {
                        "blurb": "Filter visibility  6.3K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-27": {
                        "blurb": "Filter visibility  8K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-28": {
                        "blurb": "Filter visibility  10K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-29": {
                        "blurb": "Filter visibility  12.5K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility  31.5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-30": {
                        "blurb": "Filter visibility  16K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-31": {
                        "blurb": "Filter visibility  20K",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility  40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility  50",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility  63",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility  80",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility  100",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility  125",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Band gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Band gain 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Band gain 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Band gain 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Band gain 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Band gain 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Band gain 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Band gain 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-16": {
                        "blurb": "Band gain 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-17": {
                        "blurb": "Band gain 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-18": {
                        "blurb": "Band gain 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-19": {
                        "blurb": "Band gain 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Band gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-20": {
                        "blurb": "Band gain 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-21": {
                        "blurb": "Band gain 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-22": {
                        "blurb": "Band gain 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-23": {
                        "blurb": "Band gain 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-24": {
                        "blurb": "Band gain 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-25": {
                        "blurb": "Band gain 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-26": {
                        "blurb": "Band gain 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-27": {
                        "blurb": "Band gain 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-28": {
                        "blurb": "Band gain 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-29": {
                        "blurb": "Band gain 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Band gain 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-30": {
                        "blurb": "Band gain 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-31": {
                        "blurb": "Band gain 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Band gain 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Band gain 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Band gain 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Band gain 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Band gain 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Band gain 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slope": {
                        "blurb": "Filter slope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "BT48 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereoslope",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xe-0": {
                        "blurb": "Band on 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-1": {
                        "blurb": "Band on 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-10": {
                        "blurb": "Band on 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-11": {
                        "blurb": "Band on 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-12": {
                        "blurb": "Band on 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-13": {
                        "blurb": "Band on 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-14": {
                        "blurb": "Band on 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-15": {
                        "blurb": "Band on 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-16": {
                        "blurb": "Band on 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-17": {
                        "blurb": "Band on 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-18": {
                        "blurb": "Band on 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-19": {
                        "blurb": "Band on 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-2": {
                        "blurb": "Band on 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-20": {
                        "blurb": "Band on 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-21": {
                        "blurb": "Band on 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-22": {
                        "blurb": "Band on 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-23": {
                        "blurb": "Band on 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-24": {
                        "blurb": "Band on 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-25": {
                        "blurb": "Band on 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-26": {
                        "blurb": "Band on 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-27": {
                        "blurb": "Band on 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-28": {
                        "blurb": "Band on 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-29": {
                        "blurb": "Band on 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-3": {
                        "blurb": "Band on 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-30": {
                        "blurb": "Band on 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-31": {
                        "blurb": "Band on 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-4": {
                        "blurb": "Band on 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-5": {
                        "blurb": "Band on 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-6": {
                        "blurb": "Band on 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-7": {
                        "blurb": "Band on 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-8": {
                        "blurb": "Band on 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xe-9": {
                        "blurb": "Band on 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-0": {
                        "blurb": "Band mute 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Band mute 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Band mute 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Band mute 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Band mute 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Band mute 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Band mute 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Band mute 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-16": {
                        "blurb": "Band mute 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-17": {
                        "blurb": "Band mute 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-18": {
                        "blurb": "Band mute 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-19": {
                        "blurb": "Band mute 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Band mute 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-20": {
                        "blurb": "Band mute 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-21": {
                        "blurb": "Band mute 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-22": {
                        "blurb": "Band mute 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-23": {
                        "blurb": "Band mute 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-24": {
                        "blurb": "Band mute 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-25": {
                        "blurb": "Band mute 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-26": {
                        "blurb": "Band mute 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-27": {
                        "blurb": "Band mute 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-28": {
                        "blurb": "Band mute 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-29": {
                        "blurb": "Band mute 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Band mute 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-30": {
                        "blurb": "Band mute 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-31": {
                        "blurb": "Band mute 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Band mute 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Band mute 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Band mute 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Band mute 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Band mute 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Band mute 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Band solo 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Band solo 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Band solo 160",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Band solo 200",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Band solo 250",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Band solo 315",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Band solo 400",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Band solo 500",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-16": {
                        "blurb": "Band solo 630",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-17": {
                        "blurb": "Band solo 800",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-18": {
                        "blurb": "Band solo 1K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-19": {
                        "blurb": "Band solo 1.25K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Band solo 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-20": {
                        "blurb": "Band solo 1.6K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-21": {
                        "blurb": "Band solo 2K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-22": {
                        "blurb": "Band solo 2.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-23": {
                        "blurb": "Band solo 3.15K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-24": {
                        "blurb": "Band solo 4K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-25": {
                        "blurb": "Band solo 5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-26": {
                        "blurb": "Band solo 6.3K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-27": {
                        "blurb": "Band solo 8K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-28": {
                        "blurb": "Band solo 10K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-29": {
                        "blurb": "Band solo 12.5K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Band solo 31.5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-30": {
                        "blurb": "Band solo 16K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-31": {
                        "blurb": "Band solo 20K",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Band solo 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Band solo 50",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Band solo 63",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Band solo 80",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Band solo 100",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Band solo 125",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-mono": {
                "author": "LSP LV2",
                "description": "LSP Impulse Responses Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-impulse-responses-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Reverb",
                "long-name": "LSP Impulse Responses Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ca": {
                        "blurb": "Channel activity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "cs": {
                        "blurb": "Channel source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-monocs",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-0": {
                        "blurb": "Band 50Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-1": {
                        "blurb": "Band 107Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-2": {
                        "blurb": "Band 227Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-3": {
                        "blurb": "Band 484Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-4": {
                        "blurb": "Band 1 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-5": {
                        "blurb": "Band 2.2 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-6": {
                        "blurb": "Band 4.7 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-7": {
                        "blurb": "Band 10 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "32767 (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-monofft",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcf": {
                        "blurb": "High-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "22000",
                        "min": "2000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcm": {
                        "blurb": "High-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-monohcm",
                        "writable": true
                    },
                    "ifi": {
                        "blurb": "Fade in",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifl": {
                        "blurb": "Impulse length",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifo": {
                        "blurb": "Fade out",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifs": {
                        "blurb": "Load status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ihc": {
                        "blurb": "Head cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ils": {
                        "blurb": "Impulse listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "itc": {
                        "blurb": "Tail cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcf": {
                        "blurb": "Low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcm": {
                        "blurb": "Low-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-monolcm",
                        "writable": true
                    },
                    "mk": {
                        "blurb": "Makeup gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pd": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wpp": {
                        "blurb": "Wet post-process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereo": {
                "author": "LSP LV2",
                "description": "LSP Impulse Responses Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-impulse-responses-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Reverb",
                "long-name": "LSP Impulse Responses Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ca-l": {
                        "blurb": "Channel activity Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca-r": {
                        "blurb": "Channel activity Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "cs-l": {
                        "blurb": "Channel source Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-stereocs-l",
                        "writable": true
                    },
                    "cs-r": {
                        "blurb": "Channel source Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-stereocs-r",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-0": {
                        "blurb": "Band 50Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-1": {
                        "blurb": "Band 107Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-2": {
                        "blurb": "Band 227Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-3": {
                        "blurb": "Band 484Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-4": {
                        "blurb": "Band 1 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-5": {
                        "blurb": "Band 2.2 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-6": {
                        "blurb": "Band 4.7 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-7": {
                        "blurb": "Band 10 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "32767 (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-stereofft",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "File selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "File 1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-stereofsel",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcf": {
                        "blurb": "High-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "22000",
                        "min": "2000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcm": {
                        "blurb": "High-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-stereohcm",
                        "writable": true
                    },
                    "ifi0": {
                        "blurb": "Fade in 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi1": {
                        "blurb": "Fade in 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifl0": {
                        "blurb": "Impulse length 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl1": {
                        "blurb": "Impulse length 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifo0": {
                        "blurb": "Fade out 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo1": {
                        "blurb": "Fade out 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifs0": {
                        "blurb": "Load status 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs1": {
                        "blurb": "Load status 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ihc0": {
                        "blurb": "Head cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc1": {
                        "blurb": "Head cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ils0": {
                        "blurb": "Impulse listen 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils1": {
                        "blurb": "Impulse listen 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "itc0": {
                        "blurb": "Tail cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc1": {
                        "blurb": "Tail cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcf": {
                        "blurb": "Low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcm": {
                        "blurb": "Low-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-responses-stereolcm",
                        "writable": true
                    },
                    "mk-l": {
                        "blurb": "Makeup gain Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-r": {
                        "blurb": "Makeup gain Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pd-l": {
                        "blurb": "Pre-delay Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd-r": {
                        "blurb": "Pre-delay Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wpp": {
                        "blurb": "Wet post-process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-mono": {
                "author": "LSP LV2",
                "description": "LSP Impulse Reverb Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-impulse-reverb-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Reverb",
                "long-name": "LSP Impulse Reverb Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ca0": {
                        "blurb": "Channel activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca1": {
                        "blurb": "Channel activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca2": {
                        "blurb": "Channel activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca3": {
                        "blurb": "Channel activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "cam0": {
                        "blurb": "Channel mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam1": {
                        "blurb": "Channel mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam2": {
                        "blurb": "Channel mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam3": {
                        "blurb": "Channel mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "com0": {
                        "blurb": "Channel Left/Right output mix 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com1": {
                        "blurb": "Channel Left/Right output mix 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com2": {
                        "blurb": "Channel Left/Right output mix 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com3": {
                        "blurb": "Channel Left/Right output mix 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "csf0": {
                        "blurb": "Channel source file 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf0",
                        "writable": true
                    },
                    "csf1": {
                        "blurb": "Channel source file 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf1",
                        "writable": true
                    },
                    "csf2": {
                        "blurb": "Channel source file 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf2",
                        "writable": true
                    },
                    "csf3": {
                        "blurb": "Channel source file 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf3",
                        "writable": true
                    },
                    "cst0": {
                        "blurb": "Channel source track 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocst0",
                        "writable": true
                    },
                    "cst1": {
                        "blurb": "Channel source track 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 2 (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocst1",
                        "writable": true
                    },
                    "cst2": {
                        "blurb": "Channel source track 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocst2",
                        "writable": true
                    },
                    "cst3": {
                        "blurb": "Channel source track 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 2 (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monocst3",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-0": {
                        "blurb": "Band 50Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-1": {
                        "blurb": "Band 107Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-2": {
                        "blurb": "Band 227Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-3": {
                        "blurb": "Band 484Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-4": {
                        "blurb": "Band 1 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-5": {
                        "blurb": "Band 2.2 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-6": {
                        "blurb": "Band 4.7 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-7": {
                        "blurb": "Band 10 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "32767 (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monofft",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "File selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "File 1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monofsel",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcf": {
                        "blurb": "High-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "22000",
                        "min": "2000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcm": {
                        "blurb": "High-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monohcm",
                        "writable": true
                    },
                    "ifi0": {
                        "blurb": "Fade in 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi1": {
                        "blurb": "Fade in 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi2": {
                        "blurb": "Fade in 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi3": {
                        "blurb": "Fade in 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifl0": {
                        "blurb": "Impulse length 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl1": {
                        "blurb": "Impulse length 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl2": {
                        "blurb": "Impulse length 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl3": {
                        "blurb": "Impulse length 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifo0": {
                        "blurb": "Fade out 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo1": {
                        "blurb": "Fade out 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo2": {
                        "blurb": "Fade out 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo3": {
                        "blurb": "Fade out 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifs0": {
                        "blurb": "Load status 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs1": {
                        "blurb": "Load status 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs2": {
                        "blurb": "Load status 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs3": {
                        "blurb": "Load status 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ihc0": {
                        "blurb": "Head cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc1": {
                        "blurb": "Head cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc2": {
                        "blurb": "Head cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc3": {
                        "blurb": "Head cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ils0": {
                        "blurb": "Impulse listen 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils1": {
                        "blurb": "Impulse listen 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils2": {
                        "blurb": "Impulse listen 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils3": {
                        "blurb": "Impulse listen 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv0": {
                        "blurb": "Impulse reverse 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv1": {
                        "blurb": "Impulse reverse 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv2": {
                        "blurb": "Impulse reverse 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv3": {
                        "blurb": "Impulse reverse 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "itc0": {
                        "blurb": "Tail cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc1": {
                        "blurb": "Tail cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc2": {
                        "blurb": "Tail cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc3": {
                        "blurb": "Tail cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcf": {
                        "blurb": "Low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcm": {
                        "blurb": "Low-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-monolcm",
                        "writable": true
                    },
                    "mk0": {
                        "blurb": "Makeup gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk1": {
                        "blurb": "Makeup gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk2": {
                        "blurb": "Makeup gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk3": {
                        "blurb": "Makeup gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "p": {
                        "blurb": "Panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd0": {
                        "blurb": "Channel pre-delay 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd1": {
                        "blurb": "Channel pre-delay 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd2": {
                        "blurb": "Channel pre-delay 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd3": {
                        "blurb": "Channel pre-delay 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wpp": {
                        "blurb": "Wet post-process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereo": {
                "author": "LSP LV2",
                "description": "LSP Impulse Reverb Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-impulse-reverb-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Reverb",
                "long-name": "LSP Impulse Reverb Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ca0": {
                        "blurb": "Channel activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca1": {
                        "blurb": "Channel activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca2": {
                        "blurb": "Channel activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca3": {
                        "blurb": "Channel activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "cam0": {
                        "blurb": "Channel mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam1": {
                        "blurb": "Channel mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam2": {
                        "blurb": "Channel mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam3": {
                        "blurb": "Channel mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cim0": {
                        "blurb": "Left/Right input mix 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cim1": {
                        "blurb": "Left/Right input mix 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cim2": {
                        "blurb": "Left/Right input mix 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cim3": {
                        "blurb": "Left/Right input mix 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com0": {
                        "blurb": "Channel Left/Right output mix 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com1": {
                        "blurb": "Channel Left/Right output mix 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com2": {
                        "blurb": "Channel Left/Right output mix 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com3": {
                        "blurb": "Channel Left/Right output mix 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "csf0": {
                        "blurb": "Channel source file 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf0",
                        "writable": true
                    },
                    "csf1": {
                        "blurb": "Channel source file 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf1",
                        "writable": true
                    },
                    "csf2": {
                        "blurb": "Channel source file 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf2",
                        "writable": true
                    },
                    "csf3": {
                        "blurb": "Channel source file 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf3",
                        "writable": true
                    },
                    "cst0": {
                        "blurb": "Channel source track 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst0",
                        "writable": true
                    },
                    "cst1": {
                        "blurb": "Channel source track 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 2 (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst1",
                        "writable": true
                    },
                    "cst2": {
                        "blurb": "Channel source track 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 3 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst2",
                        "writable": true
                    },
                    "cst3": {
                        "blurb": "Channel source track 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Track 4 (3)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst3",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-0": {
                        "blurb": "Band 50Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-1": {
                        "blurb": "Band 107Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-2": {
                        "blurb": "Band 227Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-3": {
                        "blurb": "Band 484Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-4": {
                        "blurb": "Band 1 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-5": {
                        "blurb": "Band 2.2 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-6": {
                        "blurb": "Band 4.7 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-7": {
                        "blurb": "Band 10 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "32767 (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereofft",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "File selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "File 1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereofsel",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcf": {
                        "blurb": "High-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "22000",
                        "min": "2000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcm": {
                        "blurb": "High-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereohcm",
                        "writable": true
                    },
                    "ifi0": {
                        "blurb": "Fade in 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi1": {
                        "blurb": "Fade in 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi2": {
                        "blurb": "Fade in 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi3": {
                        "blurb": "Fade in 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifl0": {
                        "blurb": "Impulse length 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl1": {
                        "blurb": "Impulse length 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl2": {
                        "blurb": "Impulse length 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl3": {
                        "blurb": "Impulse length 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifo0": {
                        "blurb": "Fade out 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo1": {
                        "blurb": "Fade out 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo2": {
                        "blurb": "Fade out 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo3": {
                        "blurb": "Fade out 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifs0": {
                        "blurb": "Load status 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs1": {
                        "blurb": "Load status 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs2": {
                        "blurb": "Load status 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs3": {
                        "blurb": "Load status 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ihc0": {
                        "blurb": "Head cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc1": {
                        "blurb": "Head cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc2": {
                        "blurb": "Head cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc3": {
                        "blurb": "Head cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ils0": {
                        "blurb": "Impulse listen 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils1": {
                        "blurb": "Impulse listen 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils2": {
                        "blurb": "Impulse listen 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils3": {
                        "blurb": "Impulse listen 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv0": {
                        "blurb": "Impulse reverse 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv1": {
                        "blurb": "Impulse reverse 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv2": {
                        "blurb": "Impulse reverse 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv3": {
                        "blurb": "Impulse reverse 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "itc0": {
                        "blurb": "Tail cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc1": {
                        "blurb": "Tail cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc2": {
                        "blurb": "Tail cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc3": {
                        "blurb": "Tail cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcf": {
                        "blurb": "Low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcm": {
                        "blurb": "Low-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-impulse-reverb-stereolcm",
                        "writable": true
                    },
                    "mk0": {
                        "blurb": "Makeup gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk1": {
                        "blurb": "Makeup gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk2": {
                        "blurb": "Makeup gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk3": {
                        "blurb": "Makeup gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pd": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd0": {
                        "blurb": "Channel pre-delay 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd1": {
                        "blurb": "Channel pre-delay 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd2": {
                        "blurb": "Channel pre-delay 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd3": {
                        "blurb": "Channel pre-delay 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl": {
                        "blurb": "Left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr": {
                        "blurb": "Right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wpp": {
                        "blurb": "Wet post-process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-latency-meter": {
                "author": "LSP LV2",
                "description": "LSP Latency Meter",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-latency-meter",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Analyser",
                "long-name": "LSP Latency Meter",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "athr": {
                        "blurb": "Absolute threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "6.3e-05",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fback": {
                        "blurb": "Feedback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gin": {
                        "blurb": "Input Gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gout": {
                        "blurb": "Output Gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ilvl": {
                        "blurb": "Input Level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "l-v": {
                        "blurb": "Latency Value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mlat": {
                        "blurb": "Max expected latency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pthr": {
                        "blurb": "Peak threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "6.3e-05",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ttrig": {
                        "blurb": "Trig a Latency measurement",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-limiter-mono": {
                "author": "LSP LV2",
                "description": "LSP Limiter Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-limiter-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Limiter",
                "long-name": "LSP Limiter Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "at": {
                        "blurb": "Attack time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0.25",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "boost": {
                        "blurb": "Gain boost",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dith": {
                        "blurb": "Dithering",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-limiter-monodith",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grgv": {
                        "blurb": "Gain graph visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grlm": {
                        "blurb": "Gain reduction level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "igv": {
                        "blurb": "Input graph visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm": {
                        "blurb": "Input level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "knee": {
                        "blurb": "Knee",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lk": {
                        "blurb": "Lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Operating mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Herm Thin (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-limiter-monomode",
                        "writable": true
                    },
                    "ogv": {
                        "blurb": "Output graph visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm": {
                        "blurb": "Outut level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ovs": {
                        "blurb": "Oversampling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-limiter-monoovs",
                        "writable": true
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0.25",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scgv": {
                        "blurb": "Sidechain graph visibility",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclm": {
                        "blurb": "Sidechain level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "th": {
                        "blurb": "Threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.00398",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-limiter-stereo": {
                "author": "LSP LV2",
                "description": "LSP Limiter Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-limiter-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Limiter",
                "long-name": "LSP Limiter Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "at": {
                        "blurb": "Attack time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0.25",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "boost": {
                        "blurb": "Gain boost",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dith": {
                        "blurb": "Dithering",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-limiter-stereodith",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "grgv-l": {
                        "blurb": "Gain graph visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grgv-r": {
                        "blurb": "Gain graph visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "grlm-l": {
                        "blurb": "Gain reduction level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "grlm-r": {
                        "blurb": "Gain reduction level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "igv-l": {
                        "blurb": "Input graph visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "igv-r": {
                        "blurb": "Input graph visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "knee": {
                        "blurb": "Knee",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lk": {
                        "blurb": "Lookahead",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Operating mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Herm Thin (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-limiter-stereomode",
                        "writable": true
                    },
                    "ogv-l": {
                        "blurb": "Output graph visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ogv-r": {
                        "blurb": "Output graph visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Outut level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Outut level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ovs": {
                        "blurb": "Oversampling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-limiter-stereoovs",
                        "writable": true
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0.25",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scgv-l": {
                        "blurb": "Sidechain graph visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scgv-r": {
                        "blurb": "Sidechain graph visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclm-l": {
                        "blurb": "Sidechain level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sclm-r": {
                        "blurb": "Sidechain level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "scp": {
                        "blurb": "Sidechain preamp",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "slink": {
                        "blurb": "Stereo linking",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "th": {
                        "blurb": "Threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.00398",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lr": {
                "author": "LSP LV2",
                "description": "LSP Multiband Compressor LeftRight x8",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-mb-compressor-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Multiband Compressor LeftRight x8",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-0l": {
                        "blurb": "Attack level 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-0r": {
                        "blurb": "Attack level 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-1l": {
                        "blurb": "Attack level 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-1r": {
                        "blurb": "Attack level 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-2l": {
                        "blurb": "Attack level 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-2r": {
                        "blurb": "Attack level 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-3l": {
                        "blurb": "Attack level 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-3r": {
                        "blurb": "Attack level 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-4l": {
                        "blurb": "Attack level 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-4r": {
                        "blurb": "Attack level 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-5l": {
                        "blurb": "Attack level 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-5r": {
                        "blurb": "Attack level 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-6l": {
                        "blurb": "Attack level 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-6r": {
                        "blurb": "Attack level 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-7l": {
                        "blurb": "Attack level 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-7r": {
                        "blurb": "Attack level 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-0l": {
                        "blurb": "Attack time 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-0r": {
                        "blurb": "Attack time 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-1l": {
                        "blurb": "Attack time 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-1r": {
                        "blurb": "Attack time 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-2l": {
                        "blurb": "Attack time 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-2r": {
                        "blurb": "Attack time 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-3l": {
                        "blurb": "Attack time 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-3r": {
                        "blurb": "Attack time 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-4l": {
                        "blurb": "Attack time 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-4r": {
                        "blurb": "Attack time 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-5l": {
                        "blurb": "Attack time 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-5r": {
                        "blurb": "Attack time 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-6l": {
                        "blurb": "Attack time 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-6r": {
                        "blurb": "Attack time 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-7l": {
                        "blurb": "Attack time 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-7r": {
                        "blurb": "Attack time 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bm-0l": {
                        "blurb": "Mute band 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-0r": {
                        "blurb": "Mute band 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-1l": {
                        "blurb": "Mute band 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-1r": {
                        "blurb": "Mute band 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-2l": {
                        "blurb": "Mute band 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-2r": {
                        "blurb": "Mute band 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-3l": {
                        "blurb": "Mute band 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-3r": {
                        "blurb": "Mute band 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-4l": {
                        "blurb": "Mute band 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-4r": {
                        "blurb": "Mute band 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-5l": {
                        "blurb": "Mute band 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-5r": {
                        "blurb": "Mute band 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-6l": {
                        "blurb": "Mute band 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-6r": {
                        "blurb": "Mute band 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-7l": {
                        "blurb": "Mute band 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-7r": {
                        "blurb": "Mute band 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-0l": {
                        "blurb": "Solo band 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-0r": {
                        "blurb": "Solo band 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-1l": {
                        "blurb": "Solo band 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-1r": {
                        "blurb": "Solo band 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-2l": {
                        "blurb": "Solo band 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-2r": {
                        "blurb": "Solo band 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-3l": {
                        "blurb": "Solo band 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-3r": {
                        "blurb": "Solo band 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-4l": {
                        "blurb": "Solo band 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-4r": {
                        "blurb": "Solo band 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-5l": {
                        "blurb": "Solo band 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-5r": {
                        "blurb": "Solo band 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-6l": {
                        "blurb": "Solo band 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-6r": {
                        "blurb": "Solo band 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-7l": {
                        "blurb": "Solo band 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-7r": {
                        "blurb": "Solo band 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bsel": {
                        "blurb": "Band selection",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Split Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrbsel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-1l": {
                        "blurb": "Compression band enable 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-1r": {
                        "blurb": "Compression band enable 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-2l": {
                        "blurb": "Compression band enable 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-2r": {
                        "blurb": "Compression band enable 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-3l": {
                        "blurb": "Compression band enable 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-3r": {
                        "blurb": "Compression band enable 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-4l": {
                        "blurb": "Compression band enable 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-4r": {
                        "blurb": "Compression band enable 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-5l": {
                        "blurb": "Compression band enable 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-5r": {
                        "blurb": "Compression band enable 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-6l": {
                        "blurb": "Compression band enable 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-6r": {
                        "blurb": "Compression band enable 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-7l": {
                        "blurb": "Compression band enable 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-7r": {
                        "blurb": "Compression band enable 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-0l": {
                        "blurb": "Compressor enable 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-0r": {
                        "blurb": "Compressor enable 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-1l": {
                        "blurb": "Compressor enable 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-1r": {
                        "blurb": "Compressor enable 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-2l": {
                        "blurb": "Compressor enable 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-2r": {
                        "blurb": "Compressor enable 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-3l": {
                        "blurb": "Compressor enable 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-3r": {
                        "blurb": "Compressor enable 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-4l": {
                        "blurb": "Compressor enable 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-4r": {
                        "blurb": "Compressor enable 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-5l": {
                        "blurb": "Compressor enable 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-5r": {
                        "blurb": "Compressor enable 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-6l": {
                        "blurb": "Compressor enable 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-6r": {
                        "blurb": "Compressor enable 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-7l": {
                        "blurb": "Compressor enable 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-7r": {
                        "blurb": "Compressor enable 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-0l": {
                        "blurb": "Curve level meter 0 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-0r": {
                        "blurb": "Curve level meter 0 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-1l": {
                        "blurb": "Curve level meter 1 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-1r": {
                        "blurb": "Curve level meter 1 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-2l": {
                        "blurb": "Curve level meter 2 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-2r": {
                        "blurb": "Curve level meter 2 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-3l": {
                        "blurb": "Curve level meter 3 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-3r": {
                        "blurb": "Curve level meter 3 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-4l": {
                        "blurb": "Curve level meter 4 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-4r": {
                        "blurb": "Curve level meter 4 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-5l": {
                        "blurb": "Curve level meter 5 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-5r": {
                        "blurb": "Curve level meter 5 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-6l": {
                        "blurb": "Curve level meter 6 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-6r": {
                        "blurb": "Curve level meter 6 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-7l": {
                        "blurb": "Curve level meter 7 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-7r": {
                        "blurb": "Curve level meter 7 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm-0l": {
                        "blurb": "Compression mode 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-0l",
                        "writable": true
                    },
                    "cm-0r": {
                        "blurb": "Compression mode 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-0r",
                        "writable": true
                    },
                    "cm-1l": {
                        "blurb": "Compression mode 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-1l",
                        "writable": true
                    },
                    "cm-1r": {
                        "blurb": "Compression mode 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-1r",
                        "writable": true
                    },
                    "cm-2l": {
                        "blurb": "Compression mode 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-2l",
                        "writable": true
                    },
                    "cm-2r": {
                        "blurb": "Compression mode 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-2r",
                        "writable": true
                    },
                    "cm-3l": {
                        "blurb": "Compression mode 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-3l",
                        "writable": true
                    },
                    "cm-3r": {
                        "blurb": "Compression mode 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-3r",
                        "writable": true
                    },
                    "cm-4l": {
                        "blurb": "Compression mode 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-4l",
                        "writable": true
                    },
                    "cm-4r": {
                        "blurb": "Compression mode 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-4r",
                        "writable": true
                    },
                    "cm-5l": {
                        "blurb": "Compression mode 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-5l",
                        "writable": true
                    },
                    "cm-5r": {
                        "blurb": "Compression mode 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-5r",
                        "writable": true
                    },
                    "cm-6l": {
                        "blurb": "Compression mode 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-6l",
                        "writable": true
                    },
                    "cm-6r": {
                        "blurb": "Compression mode 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-6r",
                        "writable": true
                    },
                    "cm-7l": {
                        "blurb": "Compression mode 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-7l",
                        "writable": true
                    },
                    "cm-7r": {
                        "blurb": "Compression mode 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-7r",
                        "writable": true
                    },
                    "cr-0l": {
                        "blurb": "Ratio 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-0r": {
                        "blurb": "Ratio 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-1l": {
                        "blurb": "Ratio 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-1r": {
                        "blurb": "Ratio 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-2l": {
                        "blurb": "Ratio 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-2r": {
                        "blurb": "Ratio 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-3l": {
                        "blurb": "Ratio 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-3r": {
                        "blurb": "Ratio 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-4l": {
                        "blurb": "Ratio 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-4r": {
                        "blurb": "Ratio 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-5l": {
                        "blurb": "Ratio 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-5r": {
                        "blurb": "Ratio 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-6l": {
                        "blurb": "Ratio 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-6r": {
                        "blurb": "Ratio 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-7l": {
                        "blurb": "Ratio 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-7r": {
                        "blurb": "Ratio 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-0l": {
                        "blurb": "Envelope level meter 0 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-0r": {
                        "blurb": "Envelope level meter 0 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-1l": {
                        "blurb": "Envelope level meter 1 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-1r": {
                        "blurb": "Envelope level meter 1 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-2l": {
                        "blurb": "Envelope level meter 2 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-2r": {
                        "blurb": "Envelope level meter 2 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-3l": {
                        "blurb": "Envelope level meter 3 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-3r": {
                        "blurb": "Envelope level meter 3 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-4l": {
                        "blurb": "Envelope level meter 4 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-4r": {
                        "blurb": "Envelope level meter 4 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-5l": {
                        "blurb": "Envelope level meter 5 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-5r": {
                        "blurb": "Envelope level meter 5 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-6l": {
                        "blurb": "Envelope level meter 6 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-6r": {
                        "blurb": "Envelope level meter 6 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-7l": {
                        "blurb": "Envelope level meter 7 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-7r": {
                        "blurb": "Envelope level meter 7 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "envb": {
                        "blurb": "Envelope boost",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Pink BT (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrenvb",
                        "writable": true
                    },
                    "flt-l": {
                        "blurb": "Band filter curves Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "flt-r": {
                        "blurb": "Band filter curves Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fre-0l": {
                        "blurb": "Frequency range end 0 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-0r": {
                        "blurb": "Frequency range end 0 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-1l": {
                        "blurb": "Frequency range end 1 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-1r": {
                        "blurb": "Frequency range end 1 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-2l": {
                        "blurb": "Frequency range end 2 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-2r": {
                        "blurb": "Frequency range end 2 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-3l": {
                        "blurb": "Frequency range end 3 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-3r": {
                        "blurb": "Frequency range end 3 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-4l": {
                        "blurb": "Frequency range end 4 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-4r": {
                        "blurb": "Frequency range end 4 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-5l": {
                        "blurb": "Frequency range end 5 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-5r": {
                        "blurb": "Frequency range end 5 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-6l": {
                        "blurb": "Frequency range end 6 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-6r": {
                        "blurb": "Frequency range end 6 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-7l": {
                        "blurb": "Frequency range end 7 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-7r": {
                        "blurb": "Frequency range end 7 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "g-dry": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-wet": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0l": {
                        "blurb": "Hue  0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0r": {
                        "blurb": "Hue  0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1l": {
                        "blurb": "Hue  1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1r": {
                        "blurb": "Hue  1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2l": {
                        "blurb": "Hue  2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2r": {
                        "blurb": "Hue  2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3l": {
                        "blurb": "Hue  3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3r": {
                        "blurb": "Hue  3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4l": {
                        "blurb": "Hue  4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4r": {
                        "blurb": "Hue  4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5l": {
                        "blurb": "Hue  5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5r": {
                        "blurb": "Hue  5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6l": {
                        "blurb": "Hue  6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6r": {
                        "blurb": "Hue  6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7l": {
                        "blurb": "Hue  7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7r": {
                        "blurb": "Hue  7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ife-l": {
                        "blurb": "Input FFT graph enable Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ife-r": {
                        "blurb": "Input FFT graph enable Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "kn-0l": {
                        "blurb": "Knee 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-0r": {
                        "blurb": "Knee 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-1l": {
                        "blurb": "Knee 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-1r": {
                        "blurb": "Knee 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-2l": {
                        "blurb": "Knee 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-2r": {
                        "blurb": "Knee 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-3l": {
                        "blurb": "Knee 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-3r": {
                        "blurb": "Knee 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-4l": {
                        "blurb": "Knee 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-4r": {
                        "blurb": "Knee 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-5l": {
                        "blurb": "Knee 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-5r": {
                        "blurb": "Knee 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-6l": {
                        "blurb": "Knee 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-6r": {
                        "blurb": "Knee 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-7l": {
                        "blurb": "Knee 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-7r": {
                        "blurb": "Knee 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-0l": {
                        "blurb": "Makeup gain 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-0r": {
                        "blurb": "Makeup gain 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-1l": {
                        "blurb": "Makeup gain 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-1r": {
                        "blurb": "Makeup gain 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-2l": {
                        "blurb": "Makeup gain 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-2r": {
                        "blurb": "Makeup gain 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-3l": {
                        "blurb": "Makeup gain 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-3r": {
                        "blurb": "Makeup gain 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-4l": {
                        "blurb": "Makeup gain 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-4r": {
                        "blurb": "Makeup gain 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-5l": {
                        "blurb": "Makeup gain 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-5r": {
                        "blurb": "Makeup gain 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-6l": {
                        "blurb": "Makeup gain 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-6r": {
                        "blurb": "Makeup gain 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-7l": {
                        "blurb": "Makeup gain 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-7r": {
                        "blurb": "Makeup gain 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Compressor mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Modern (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrmode",
                        "writable": true
                    },
                    "ofe-l": {
                        "blurb": "Output FFT graph enable Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofe-r": {
                        "blurb": "Output FFT graph enable Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl-0l": {
                        "blurb": "Release level 0 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-0r": {
                        "blurb": "Release level 0 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-1l": {
                        "blurb": "Release level 1 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-1r": {
                        "blurb": "Release level 1 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-2l": {
                        "blurb": "Release level 2 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-2r": {
                        "blurb": "Release level 2 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-3l": {
                        "blurb": "Release level 3 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-3r": {
                        "blurb": "Release level 3 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-4l": {
                        "blurb": "Release level 4 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-4r": {
                        "blurb": "Release level 4 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-5l": {
                        "blurb": "Release level 5 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-5r": {
                        "blurb": "Release level 5 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-6l": {
                        "blurb": "Release level 6 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-6r": {
                        "blurb": "Release level 6 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-7l": {
                        "blurb": "Release level 7 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-7r": {
                        "blurb": "Release level 7 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-0l": {
                        "blurb": "Reduction level meter 0 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-0r": {
                        "blurb": "Reduction level meter 0 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-1l": {
                        "blurb": "Reduction level meter 1 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-1r": {
                        "blurb": "Reduction level meter 1 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-2l": {
                        "blurb": "Reduction level meter 2 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-2r": {
                        "blurb": "Reduction level meter 2 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-3l": {
                        "blurb": "Reduction level meter 3 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-3r": {
                        "blurb": "Reduction level meter 3 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-4l": {
                        "blurb": "Reduction level meter 4 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-4r": {
                        "blurb": "Reduction level meter 4 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-5l": {
                        "blurb": "Reduction level meter 5 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-5r": {
                        "blurb": "Reduction level meter 5 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-6l": {
                        "blurb": "Reduction level meter 6 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-6r": {
                        "blurb": "Reduction level meter 6 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-7l": {
                        "blurb": "Reduction level meter 7 Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-7r": {
                        "blurb": "Reduction level meter 7 Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-0l": {
                        "blurb": "Relative release level 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-0r": {
                        "blurb": "Relative release level 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-1l": {
                        "blurb": "Relative release level 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-1r": {
                        "blurb": "Relative release level 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-2l": {
                        "blurb": "Relative release level 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-2r": {
                        "blurb": "Relative release level 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-3l": {
                        "blurb": "Relative release level 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-3r": {
                        "blurb": "Relative release level 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-4l": {
                        "blurb": "Relative release level 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-4r": {
                        "blurb": "Relative release level 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-5l": {
                        "blurb": "Relative release level 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-5r": {
                        "blurb": "Relative release level 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-6l": {
                        "blurb": "Relative release level 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-6r": {
                        "blurb": "Relative release level 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-7l": {
                        "blurb": "Relative release level 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-7r": {
                        "blurb": "Relative release level 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-0l": {
                        "blurb": "Release time 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-0r": {
                        "blurb": "Release time 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-1l": {
                        "blurb": "Release time 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-1r": {
                        "blurb": "Release time 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-2l": {
                        "blurb": "Release time 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-2r": {
                        "blurb": "Release time 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-3l": {
                        "blurb": "Release time 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-3r": {
                        "blurb": "Release time 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-4l": {
                        "blurb": "Release time 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-4r": {
                        "blurb": "Release time 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-5l": {
                        "blurb": "Release time 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-5r": {
                        "blurb": "Release time 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-6l": {
                        "blurb": "Release time 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-6r": {
                        "blurb": "Release time 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-7l": {
                        "blurb": "Release time 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-7r": {
                        "blurb": "Release time 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schc-0l": {
                        "blurb": "Sidechain custom hi-cut 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-0r": {
                        "blurb": "Sidechain custom hi-cut 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-1l": {
                        "blurb": "Sidechain custom hi-cut 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-1r": {
                        "blurb": "Sidechain custom hi-cut 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-2l": {
                        "blurb": "Sidechain custom hi-cut 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-2r": {
                        "blurb": "Sidechain custom hi-cut 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-3l": {
                        "blurb": "Sidechain custom hi-cut 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-3r": {
                        "blurb": "Sidechain custom hi-cut 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-4l": {
                        "blurb": "Sidechain custom hi-cut 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-4r": {
                        "blurb": "Sidechain custom hi-cut 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-5l": {
                        "blurb": "Sidechain custom hi-cut 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-5r": {
                        "blurb": "Sidechain custom hi-cut 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-6l": {
                        "blurb": "Sidechain custom hi-cut 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-6r": {
                        "blurb": "Sidechain custom hi-cut 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-7l": {
                        "blurb": "Sidechain custom hi-cut 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-7r": {
                        "blurb": "Sidechain custom hi-cut 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schf-0l": {
                        "blurb": "Sidechain hi-cut frequency 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-0r": {
                        "blurb": "Sidechain hi-cut frequency 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-1l": {
                        "blurb": "Sidechain hi-cut frequency 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-1r": {
                        "blurb": "Sidechain hi-cut frequency 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-2l": {
                        "blurb": "Sidechain hi-cut frequency 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-2r": {
                        "blurb": "Sidechain hi-cut frequency 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-3l": {
                        "blurb": "Sidechain hi-cut frequency 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-3r": {
                        "blurb": "Sidechain hi-cut frequency 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-4l": {
                        "blurb": "Sidechain hi-cut frequency 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-4r": {
                        "blurb": "Sidechain hi-cut frequency 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-5l": {
                        "blurb": "Sidechain hi-cut frequency 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-5r": {
                        "blurb": "Sidechain hi-cut frequency 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-6l": {
                        "blurb": "Sidechain hi-cut frequency 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-6r": {
                        "blurb": "Sidechain hi-cut frequency 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-7l": {
                        "blurb": "Sidechain hi-cut frequency 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-7r": {
                        "blurb": "Sidechain hi-cut frequency 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclc-0l": {
                        "blurb": "Sidechain custom lo-cut 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-0r": {
                        "blurb": "Sidechain custom lo-cut 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-1l": {
                        "blurb": "Sidechain custom lo-cut 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-1r": {
                        "blurb": "Sidechain custom lo-cut 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-2l": {
                        "blurb": "Sidechain custom lo-cut 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-2r": {
                        "blurb": "Sidechain custom lo-cut 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-3l": {
                        "blurb": "Sidechain custom lo-cut 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-3r": {
                        "blurb": "Sidechain custom lo-cut 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-4l": {
                        "blurb": "Sidechain custom lo-cut 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-4r": {
                        "blurb": "Sidechain custom lo-cut 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-5l": {
                        "blurb": "Sidechain custom lo-cut 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-5r": {
                        "blurb": "Sidechain custom lo-cut 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-6l": {
                        "blurb": "Sidechain custom lo-cut 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-6r": {
                        "blurb": "Sidechain custom lo-cut 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-7l": {
                        "blurb": "Sidechain custom lo-cut 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-7r": {
                        "blurb": "Sidechain custom lo-cut 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclf-0l": {
                        "blurb": "Sidechain lo-cut frequency 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "20000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-0r": {
                        "blurb": "Sidechain lo-cut frequency 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "20000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-1l": {
                        "blurb": "Sidechain lo-cut frequency 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-1r": {
                        "blurb": "Sidechain lo-cut frequency 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-2l": {
                        "blurb": "Sidechain lo-cut frequency 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-2r": {
                        "blurb": "Sidechain lo-cut frequency 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-3l": {
                        "blurb": "Sidechain lo-cut frequency 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-3r": {
                        "blurb": "Sidechain lo-cut frequency 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-4l": {
                        "blurb": "Sidechain lo-cut frequency 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-4r": {
                        "blurb": "Sidechain lo-cut frequency 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-5l": {
                        "blurb": "Sidechain lo-cut frequency 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-5r": {
                        "blurb": "Sidechain lo-cut frequency 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-6l": {
                        "blurb": "Sidechain lo-cut frequency 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-6r": {
                        "blurb": "Sidechain lo-cut frequency 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-7l": {
                        "blurb": "Sidechain lo-cut frequency 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-7r": {
                        "blurb": "Sidechain lo-cut frequency 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scm-0l": {
                        "blurb": "Sidechain mode 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-0l",
                        "writable": true
                    },
                    "scm-0r": {
                        "blurb": "Sidechain mode 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-0r",
                        "writable": true
                    },
                    "scm-1l": {
                        "blurb": "Sidechain mode 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-1l",
                        "writable": true
                    },
                    "scm-1r": {
                        "blurb": "Sidechain mode 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-1r",
                        "writable": true
                    },
                    "scm-2l": {
                        "blurb": "Sidechain mode 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-2l",
                        "writable": true
                    },
                    "scm-2r": {
                        "blurb": "Sidechain mode 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-2r",
                        "writable": true
                    },
                    "scm-3l": {
                        "blurb": "Sidechain mode 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-3l",
                        "writable": true
                    },
                    "scm-3r": {
                        "blurb": "Sidechain mode 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-3r",
                        "writable": true
                    },
                    "scm-4l": {
                        "blurb": "Sidechain mode 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-4l",
                        "writable": true
                    },
                    "scm-4r": {
                        "blurb": "Sidechain mode 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-4r",
                        "writable": true
                    },
                    "scm-5l": {
                        "blurb": "Sidechain mode 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-5l",
                        "writable": true
                    },
                    "scm-5r": {
                        "blurb": "Sidechain mode 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-5r",
                        "writable": true
                    },
                    "scm-6l": {
                        "blurb": "Sidechain mode 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-6l",
                        "writable": true
                    },
                    "scm-6r": {
                        "blurb": "Sidechain mode 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-6r",
                        "writable": true
                    },
                    "scm-7l": {
                        "blurb": "Sidechain mode 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-7l",
                        "writable": true
                    },
                    "scm-7r": {
                        "blurb": "Sidechain mode 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-7r",
                        "writable": true
                    },
                    "scp-0l": {
                        "blurb": "Sidechain preamp 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-0r": {
                        "blurb": "Sidechain preamp 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-1l": {
                        "blurb": "Sidechain preamp 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-1r": {
                        "blurb": "Sidechain preamp 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-2l": {
                        "blurb": "Sidechain preamp 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-2r": {
                        "blurb": "Sidechain preamp 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-3l": {
                        "blurb": "Sidechain preamp 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-3r": {
                        "blurb": "Sidechain preamp 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-4l": {
                        "blurb": "Sidechain preamp 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-4r": {
                        "blurb": "Sidechain preamp 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-5l": {
                        "blurb": "Sidechain preamp 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-5r": {
                        "blurb": "Sidechain preamp 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-6l": {
                        "blurb": "Sidechain preamp 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-6r": {
                        "blurb": "Sidechain preamp 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-7l": {
                        "blurb": "Sidechain preamp 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-7r": {
                        "blurb": "Sidechain preamp 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-0l": {
                        "blurb": "Sidechain reactivity 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-0r": {
                        "blurb": "Sidechain reactivity 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-1l": {
                        "blurb": "Sidechain reactivity 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-1r": {
                        "blurb": "Sidechain reactivity 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-2l": {
                        "blurb": "Sidechain reactivity 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-2r": {
                        "blurb": "Sidechain reactivity 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-3l": {
                        "blurb": "Sidechain reactivity 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-3r": {
                        "blurb": "Sidechain reactivity 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-4l": {
                        "blurb": "Sidechain reactivity 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-4r": {
                        "blurb": "Sidechain reactivity 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-5l": {
                        "blurb": "Sidechain reactivity 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-5r": {
                        "blurb": "Sidechain reactivity 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-6l": {
                        "blurb": "Sidechain reactivity 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-6r": {
                        "blurb": "Sidechain reactivity 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-7l": {
                        "blurb": "Sidechain reactivity 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-7r": {
                        "blurb": "Sidechain reactivity 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-0l": {
                        "blurb": "Sidechain source 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-0l",
                        "writable": true
                    },
                    "scs-0r": {
                        "blurb": "Sidechain source 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-0r",
                        "writable": true
                    },
                    "scs-1l": {
                        "blurb": "Sidechain source 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-1l",
                        "writable": true
                    },
                    "scs-1r": {
                        "blurb": "Sidechain source 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-1r",
                        "writable": true
                    },
                    "scs-2l": {
                        "blurb": "Sidechain source 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-2l",
                        "writable": true
                    },
                    "scs-2r": {
                        "blurb": "Sidechain source 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-2r",
                        "writable": true
                    },
                    "scs-3l": {
                        "blurb": "Sidechain source 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-3l",
                        "writable": true
                    },
                    "scs-3r": {
                        "blurb": "Sidechain source 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-3r",
                        "writable": true
                    },
                    "scs-4l": {
                        "blurb": "Sidechain source 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-4l",
                        "writable": true
                    },
                    "scs-4r": {
                        "blurb": "Sidechain source 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-4r",
                        "writable": true
                    },
                    "scs-5l": {
                        "blurb": "Sidechain source 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-5l",
                        "writable": true
                    },
                    "scs-5r": {
                        "blurb": "Sidechain source 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-5r",
                        "writable": true
                    },
                    "scs-6l": {
                        "blurb": "Sidechain source 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-6l",
                        "writable": true
                    },
                    "scs-6r": {
                        "blurb": "Sidechain source 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-6r",
                        "writable": true
                    },
                    "scs-7l": {
                        "blurb": "Sidechain source 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-7l",
                        "writable": true
                    },
                    "scs-7r": {
                        "blurb": "Sidechain source 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-7r",
                        "writable": true
                    },
                    "sf-1l": {
                        "blurb": "Split frequency 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-1r": {
                        "blurb": "Split frequency 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-2l": {
                        "blurb": "Split frequency 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-2r": {
                        "blurb": "Split frequency 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-3l": {
                        "blurb": "Split frequency 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-3r": {
                        "blurb": "Split frequency 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-4l": {
                        "blurb": "Split frequency 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-4r": {
                        "blurb": "Split frequency 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-5l": {
                        "blurb": "Split frequency 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-5r": {
                        "blurb": "Split frequency 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-6l": {
                        "blurb": "Split frequency 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-6r": {
                        "blurb": "Split frequency 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-7l": {
                        "blurb": "Split frequency 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-7r": {
                        "blurb": "Split frequency 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-0l": {
                        "blurb": "Sidechain lookahead 0 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-0r": {
                        "blurb": "Sidechain lookahead 0 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-1l": {
                        "blurb": "Sidechain lookahead 1 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-1r": {
                        "blurb": "Sidechain lookahead 1 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-2l": {
                        "blurb": "Sidechain lookahead 2 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-2r": {
                        "blurb": "Sidechain lookahead 2 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-3l": {
                        "blurb": "Sidechain lookahead 3 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-3r": {
                        "blurb": "Sidechain lookahead 3 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-4l": {
                        "blurb": "Sidechain lookahead 4 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-4r": {
                        "blurb": "Sidechain lookahead 4 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-5l": {
                        "blurb": "Sidechain lookahead 5 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-5r": {
                        "blurb": "Sidechain lookahead 5 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-6l": {
                        "blurb": "Sidechain lookahead 6 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-6r": {
                        "blurb": "Sidechain lookahead 6 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-7l": {
                        "blurb": "Sidechain lookahead 7 Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-7r": {
                        "blurb": "Sidechain lookahead 7 Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.12589",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mono": {
                "author": "LSP LV2",
                "description": "LSP Multiband Compressor Mono x8",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-mb-compressor-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Multiband Compressor Mono x8",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-0": {
                        "blurb": "Attack level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-1": {
                        "blurb": "Attack level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-2": {
                        "blurb": "Attack level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-3": {
                        "blurb": "Attack level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-4": {
                        "blurb": "Attack level 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-5": {
                        "blurb": "Attack level 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-6": {
                        "blurb": "Attack level 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-7": {
                        "blurb": "Attack level 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-0": {
                        "blurb": "Attack time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-1": {
                        "blurb": "Attack time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-2": {
                        "blurb": "Attack time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-3": {
                        "blurb": "Attack time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-4": {
                        "blurb": "Attack time 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-5": {
                        "blurb": "Attack time 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-6": {
                        "blurb": "Attack time 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-7": {
                        "blurb": "Attack time 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bm-0": {
                        "blurb": "Mute band 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-1": {
                        "blurb": "Mute band 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-2": {
                        "blurb": "Mute band 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-3": {
                        "blurb": "Mute band 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-4": {
                        "blurb": "Mute band 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-5": {
                        "blurb": "Mute band 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-6": {
                        "blurb": "Mute band 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-7": {
                        "blurb": "Mute band 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-0": {
                        "blurb": "Solo band 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-1": {
                        "blurb": "Solo band 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-2": {
                        "blurb": "Solo band 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-3": {
                        "blurb": "Solo band 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-4": {
                        "blurb": "Solo band 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-5": {
                        "blurb": "Solo band 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-6": {
                        "blurb": "Solo band 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-7": {
                        "blurb": "Solo band 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bsel": {
                        "blurb": "Band selection",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Split (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monobsel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-1": {
                        "blurb": "Compression band enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-2": {
                        "blurb": "Compression band enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-3": {
                        "blurb": "Compression band enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-4": {
                        "blurb": "Compression band enable 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-5": {
                        "blurb": "Compression band enable 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-6": {
                        "blurb": "Compression band enable 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-7": {
                        "blurb": "Compression band enable 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-0": {
                        "blurb": "Compressor enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-1": {
                        "blurb": "Compressor enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-2": {
                        "blurb": "Compressor enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-3": {
                        "blurb": "Compressor enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-4": {
                        "blurb": "Compressor enable 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-5": {
                        "blurb": "Compressor enable 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-6": {
                        "blurb": "Compressor enable 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-7": {
                        "blurb": "Compressor enable 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-0": {
                        "blurb": "Curve level meter 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-1": {
                        "blurb": "Curve level meter 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-2": {
                        "blurb": "Curve level meter 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-3": {
                        "blurb": "Curve level meter 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-4": {
                        "blurb": "Curve level meter 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-5": {
                        "blurb": "Curve level meter 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-6": {
                        "blurb": "Curve level meter 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-7": {
                        "blurb": "Curve level meter 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm-0": {
                        "blurb": "Compression mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-0",
                        "writable": true
                    },
                    "cm-1": {
                        "blurb": "Compression mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-1",
                        "writable": true
                    },
                    "cm-2": {
                        "blurb": "Compression mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-2",
                        "writable": true
                    },
                    "cm-3": {
                        "blurb": "Compression mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-3",
                        "writable": true
                    },
                    "cm-4": {
                        "blurb": "Compression mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-4",
                        "writable": true
                    },
                    "cm-5": {
                        "blurb": "Compression mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-5",
                        "writable": true
                    },
                    "cm-6": {
                        "blurb": "Compression mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-6",
                        "writable": true
                    },
                    "cm-7": {
                        "blurb": "Compression mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monocm-7",
                        "writable": true
                    },
                    "cr-0": {
                        "blurb": "Ratio 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-1": {
                        "blurb": "Ratio 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-2": {
                        "blurb": "Ratio 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-3": {
                        "blurb": "Ratio 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-4": {
                        "blurb": "Ratio 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-5": {
                        "blurb": "Ratio 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-6": {
                        "blurb": "Ratio 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-7": {
                        "blurb": "Ratio 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-0": {
                        "blurb": "Envelope level meter 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-1": {
                        "blurb": "Envelope level meter 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-2": {
                        "blurb": "Envelope level meter 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-3": {
                        "blurb": "Envelope level meter 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-4": {
                        "blurb": "Envelope level meter 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-5": {
                        "blurb": "Envelope level meter 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-6": {
                        "blurb": "Envelope level meter 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-7": {
                        "blurb": "Envelope level meter 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "envb": {
                        "blurb": "Envelope boost",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Pink BT (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoenvb",
                        "writable": true
                    },
                    "flt": {
                        "blurb": "Band filter curves",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fre-0": {
                        "blurb": "Frequency range end 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-1": {
                        "blurb": "Frequency range end 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-2": {
                        "blurb": "Frequency range end 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-3": {
                        "blurb": "Frequency range end 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-4": {
                        "blurb": "Frequency range end 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-5": {
                        "blurb": "Frequency range end 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-6": {
                        "blurb": "Frequency range end 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-7": {
                        "blurb": "Frequency range end 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "g-dry": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-wet": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue  0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1": {
                        "blurb": "Hue  1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2": {
                        "blurb": "Hue  2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3": {
                        "blurb": "Hue  3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4": {
                        "blurb": "Hue  4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5": {
                        "blurb": "Hue  5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6": {
                        "blurb": "Hue  6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7": {
                        "blurb": "Hue  7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ife": {
                        "blurb": "Input FFT graph enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm": {
                        "blurb": "Input level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "kn-0": {
                        "blurb": "Knee 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-1": {
                        "blurb": "Knee 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-2": {
                        "blurb": "Knee 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-3": {
                        "blurb": "Knee 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-4": {
                        "blurb": "Knee 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-5": {
                        "blurb": "Knee 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-6": {
                        "blurb": "Knee 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-7": {
                        "blurb": "Knee 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-0": {
                        "blurb": "Makeup gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-1": {
                        "blurb": "Makeup gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-2": {
                        "blurb": "Makeup gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-3": {
                        "blurb": "Makeup gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-4": {
                        "blurb": "Makeup gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-5": {
                        "blurb": "Makeup gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-6": {
                        "blurb": "Makeup gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-7": {
                        "blurb": "Makeup gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Compressor mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Modern (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monomode",
                        "writable": true
                    },
                    "ofe": {
                        "blurb": "Output FFT graph enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm": {
                        "blurb": "Output level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl-0": {
                        "blurb": "Release level 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-1": {
                        "blurb": "Release level 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-2": {
                        "blurb": "Release level 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-3": {
                        "blurb": "Release level 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-4": {
                        "blurb": "Release level 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-5": {
                        "blurb": "Release level 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-6": {
                        "blurb": "Release level 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-7": {
                        "blurb": "Release level 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-0": {
                        "blurb": "Reduction level meter 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-1": {
                        "blurb": "Reduction level meter 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-2": {
                        "blurb": "Reduction level meter 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-3": {
                        "blurb": "Reduction level meter 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-4": {
                        "blurb": "Reduction level meter 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-5": {
                        "blurb": "Reduction level meter 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-6": {
                        "blurb": "Reduction level meter 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-7": {
                        "blurb": "Reduction level meter 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-0": {
                        "blurb": "Relative release level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-1": {
                        "blurb": "Relative release level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-2": {
                        "blurb": "Relative release level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-3": {
                        "blurb": "Relative release level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-4": {
                        "blurb": "Relative release level 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-5": {
                        "blurb": "Relative release level 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-6": {
                        "blurb": "Relative release level 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-7": {
                        "blurb": "Relative release level 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-0": {
                        "blurb": "Release time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-1": {
                        "blurb": "Release time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-2": {
                        "blurb": "Release time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-3": {
                        "blurb": "Release time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-4": {
                        "blurb": "Release time 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-5": {
                        "blurb": "Release time 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-6": {
                        "blurb": "Release time 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-7": {
                        "blurb": "Release time 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schc-0": {
                        "blurb": "Sidechain custom hi-cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-1": {
                        "blurb": "Sidechain custom hi-cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-2": {
                        "blurb": "Sidechain custom hi-cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-3": {
                        "blurb": "Sidechain custom hi-cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-4": {
                        "blurb": "Sidechain custom hi-cut 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-5": {
                        "blurb": "Sidechain custom hi-cut 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-6": {
                        "blurb": "Sidechain custom hi-cut 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-7": {
                        "blurb": "Sidechain custom hi-cut 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schf-0": {
                        "blurb": "Sidechain hi-cut frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-1": {
                        "blurb": "Sidechain hi-cut frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-2": {
                        "blurb": "Sidechain hi-cut frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-3": {
                        "blurb": "Sidechain hi-cut frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-4": {
                        "blurb": "Sidechain hi-cut frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-5": {
                        "blurb": "Sidechain hi-cut frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-6": {
                        "blurb": "Sidechain hi-cut frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-7": {
                        "blurb": "Sidechain hi-cut frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclc-0": {
                        "blurb": "Sidechain custom lo-cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-1": {
                        "blurb": "Sidechain custom lo-cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-2": {
                        "blurb": "Sidechain custom lo-cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-3": {
                        "blurb": "Sidechain custom lo-cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-4": {
                        "blurb": "Sidechain custom lo-cut 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-5": {
                        "blurb": "Sidechain custom lo-cut 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-6": {
                        "blurb": "Sidechain custom lo-cut 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-7": {
                        "blurb": "Sidechain custom lo-cut 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclf-0": {
                        "blurb": "Sidechain lo-cut frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "20000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-1": {
                        "blurb": "Sidechain lo-cut frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-2": {
                        "blurb": "Sidechain lo-cut frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-3": {
                        "blurb": "Sidechain lo-cut frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-4": {
                        "blurb": "Sidechain lo-cut frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-5": {
                        "blurb": "Sidechain lo-cut frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-6": {
                        "blurb": "Sidechain lo-cut frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-7": {
                        "blurb": "Sidechain lo-cut frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scm-0": {
                        "blurb": "Sidechain mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-0",
                        "writable": true
                    },
                    "scm-1": {
                        "blurb": "Sidechain mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-1",
                        "writable": true
                    },
                    "scm-2": {
                        "blurb": "Sidechain mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-2",
                        "writable": true
                    },
                    "scm-3": {
                        "blurb": "Sidechain mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-3",
                        "writable": true
                    },
                    "scm-4": {
                        "blurb": "Sidechain mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-4",
                        "writable": true
                    },
                    "scm-5": {
                        "blurb": "Sidechain mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-5",
                        "writable": true
                    },
                    "scm-6": {
                        "blurb": "Sidechain mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-6",
                        "writable": true
                    },
                    "scm-7": {
                        "blurb": "Sidechain mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-7",
                        "writable": true
                    },
                    "scp-0": {
                        "blurb": "Sidechain preamp 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-1": {
                        "blurb": "Sidechain preamp 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-2": {
                        "blurb": "Sidechain preamp 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-3": {
                        "blurb": "Sidechain preamp 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-4": {
                        "blurb": "Sidechain preamp 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-5": {
                        "blurb": "Sidechain preamp 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-6": {
                        "blurb": "Sidechain preamp 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-7": {
                        "blurb": "Sidechain preamp 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-0": {
                        "blurb": "Sidechain reactivity 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-1": {
                        "blurb": "Sidechain reactivity 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-2": {
                        "blurb": "Sidechain reactivity 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-3": {
                        "blurb": "Sidechain reactivity 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-4": {
                        "blurb": "Sidechain reactivity 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-5": {
                        "blurb": "Sidechain reactivity 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-6": {
                        "blurb": "Sidechain reactivity 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-7": {
                        "blurb": "Sidechain reactivity 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-1": {
                        "blurb": "Split frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-2": {
                        "blurb": "Split frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-3": {
                        "blurb": "Split frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-4": {
                        "blurb": "Split frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-5": {
                        "blurb": "Split frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-6": {
                        "blurb": "Split frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-7": {
                        "blurb": "Split frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-0": {
                        "blurb": "Sidechain lookahead 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-1": {
                        "blurb": "Sidechain lookahead 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-2": {
                        "blurb": "Sidechain lookahead 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-3": {
                        "blurb": "Sidechain lookahead 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-4": {
                        "blurb": "Sidechain lookahead 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-5": {
                        "blurb": "Sidechain lookahead 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-6": {
                        "blurb": "Sidechain lookahead 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-7": {
                        "blurb": "Sidechain lookahead 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.12589",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-ms": {
                "author": "LSP LV2",
                "description": "LSP Multiband Compressor MidSide x8",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-mb-compressor-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Multiband Compressor MidSide x8",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-0m": {
                        "blurb": "Attack level 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-0s": {
                        "blurb": "Attack level 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-1m": {
                        "blurb": "Attack level 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-1s": {
                        "blurb": "Attack level 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-2m": {
                        "blurb": "Attack level 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-2s": {
                        "blurb": "Attack level 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-3m": {
                        "blurb": "Attack level 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-3s": {
                        "blurb": "Attack level 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-4m": {
                        "blurb": "Attack level 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-4s": {
                        "blurb": "Attack level 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-5m": {
                        "blurb": "Attack level 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-5s": {
                        "blurb": "Attack level 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-6m": {
                        "blurb": "Attack level 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-6s": {
                        "blurb": "Attack level 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-7m": {
                        "blurb": "Attack level 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-7s": {
                        "blurb": "Attack level 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-0m": {
                        "blurb": "Attack time 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-0s": {
                        "blurb": "Attack time 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-1m": {
                        "blurb": "Attack time 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-1s": {
                        "blurb": "Attack time 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-2m": {
                        "blurb": "Attack time 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-2s": {
                        "blurb": "Attack time 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-3m": {
                        "blurb": "Attack time 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-3s": {
                        "blurb": "Attack time 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-4m": {
                        "blurb": "Attack time 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-4s": {
                        "blurb": "Attack time 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-5m": {
                        "blurb": "Attack time 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-5s": {
                        "blurb": "Attack time 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-6m": {
                        "blurb": "Attack time 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-6s": {
                        "blurb": "Attack time 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-7m": {
                        "blurb": "Attack time 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-7s": {
                        "blurb": "Attack time 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bm-0m": {
                        "blurb": "Mute band 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-0s": {
                        "blurb": "Mute band 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-1m": {
                        "blurb": "Mute band 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-1s": {
                        "blurb": "Mute band 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-2m": {
                        "blurb": "Mute band 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-2s": {
                        "blurb": "Mute band 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-3m": {
                        "blurb": "Mute band 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-3s": {
                        "blurb": "Mute band 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-4m": {
                        "blurb": "Mute band 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-4s": {
                        "blurb": "Mute band 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-5m": {
                        "blurb": "Mute band 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-5s": {
                        "blurb": "Mute band 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-6m": {
                        "blurb": "Mute band 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-6s": {
                        "blurb": "Mute band 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-7m": {
                        "blurb": "Mute band 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-7s": {
                        "blurb": "Mute band 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-0m": {
                        "blurb": "Solo band 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-0s": {
                        "blurb": "Solo band 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-1m": {
                        "blurb": "Solo band 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-1s": {
                        "blurb": "Solo band 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-2m": {
                        "blurb": "Solo band 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-2s": {
                        "blurb": "Solo band 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-3m": {
                        "blurb": "Solo band 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-3s": {
                        "blurb": "Solo band 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-4m": {
                        "blurb": "Solo band 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-4s": {
                        "blurb": "Solo band 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-5m": {
                        "blurb": "Solo band 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-5s": {
                        "blurb": "Solo band 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-6m": {
                        "blurb": "Solo band 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-6s": {
                        "blurb": "Solo band 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-7m": {
                        "blurb": "Solo band 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-7s": {
                        "blurb": "Solo band 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bsel": {
                        "blurb": "Band selection",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Split Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msbsel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-1m": {
                        "blurb": "Compression band enable 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-1s": {
                        "blurb": "Compression band enable 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-2m": {
                        "blurb": "Compression band enable 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-2s": {
                        "blurb": "Compression band enable 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-3m": {
                        "blurb": "Compression band enable 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-3s": {
                        "blurb": "Compression band enable 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-4m": {
                        "blurb": "Compression band enable 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-4s": {
                        "blurb": "Compression band enable 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-5m": {
                        "blurb": "Compression band enable 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-5s": {
                        "blurb": "Compression band enable 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-6m": {
                        "blurb": "Compression band enable 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-6s": {
                        "blurb": "Compression band enable 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-7m": {
                        "blurb": "Compression band enable 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-7s": {
                        "blurb": "Compression band enable 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-0m": {
                        "blurb": "Compressor enable 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-0s": {
                        "blurb": "Compressor enable 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-1m": {
                        "blurb": "Compressor enable 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-1s": {
                        "blurb": "Compressor enable 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-2m": {
                        "blurb": "Compressor enable 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-2s": {
                        "blurb": "Compressor enable 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-3m": {
                        "blurb": "Compressor enable 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-3s": {
                        "blurb": "Compressor enable 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-4m": {
                        "blurb": "Compressor enable 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-4s": {
                        "blurb": "Compressor enable 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-5m": {
                        "blurb": "Compressor enable 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-5s": {
                        "blurb": "Compressor enable 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-6m": {
                        "blurb": "Compressor enable 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-6s": {
                        "blurb": "Compressor enable 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-7m": {
                        "blurb": "Compressor enable 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-7s": {
                        "blurb": "Compressor enable 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-0m": {
                        "blurb": "Curve level meter 0 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-0s": {
                        "blurb": "Curve level meter 0 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-1m": {
                        "blurb": "Curve level meter 1 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-1s": {
                        "blurb": "Curve level meter 1 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-2m": {
                        "blurb": "Curve level meter 2 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-2s": {
                        "blurb": "Curve level meter 2 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-3m": {
                        "blurb": "Curve level meter 3 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-3s": {
                        "blurb": "Curve level meter 3 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-4m": {
                        "blurb": "Curve level meter 4 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-4s": {
                        "blurb": "Curve level meter 4 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-5m": {
                        "blurb": "Curve level meter 5 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-5s": {
                        "blurb": "Curve level meter 5 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-6m": {
                        "blurb": "Curve level meter 6 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-6s": {
                        "blurb": "Curve level meter 6 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-7m": {
                        "blurb": "Curve level meter 7 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-7s": {
                        "blurb": "Curve level meter 7 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm-0m": {
                        "blurb": "Compression mode 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-0m",
                        "writable": true
                    },
                    "cm-0s": {
                        "blurb": "Compression mode 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-0s",
                        "writable": true
                    },
                    "cm-1m": {
                        "blurb": "Compression mode 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-1m",
                        "writable": true
                    },
                    "cm-1s": {
                        "blurb": "Compression mode 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-1s",
                        "writable": true
                    },
                    "cm-2m": {
                        "blurb": "Compression mode 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-2m",
                        "writable": true
                    },
                    "cm-2s": {
                        "blurb": "Compression mode 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-2s",
                        "writable": true
                    },
                    "cm-3m": {
                        "blurb": "Compression mode 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-3m",
                        "writable": true
                    },
                    "cm-3s": {
                        "blurb": "Compression mode 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-3s",
                        "writable": true
                    },
                    "cm-4m": {
                        "blurb": "Compression mode 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-4m",
                        "writable": true
                    },
                    "cm-4s": {
                        "blurb": "Compression mode 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-4s",
                        "writable": true
                    },
                    "cm-5m": {
                        "blurb": "Compression mode 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-5m",
                        "writable": true
                    },
                    "cm-5s": {
                        "blurb": "Compression mode 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-5s",
                        "writable": true
                    },
                    "cm-6m": {
                        "blurb": "Compression mode 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-6m",
                        "writable": true
                    },
                    "cm-6s": {
                        "blurb": "Compression mode 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-6s",
                        "writable": true
                    },
                    "cm-7m": {
                        "blurb": "Compression mode 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-7m",
                        "writable": true
                    },
                    "cm-7s": {
                        "blurb": "Compression mode 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-mscm-7s",
                        "writable": true
                    },
                    "cr-0m": {
                        "blurb": "Ratio 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-0s": {
                        "blurb": "Ratio 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-1m": {
                        "blurb": "Ratio 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-1s": {
                        "blurb": "Ratio 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-2m": {
                        "blurb": "Ratio 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-2s": {
                        "blurb": "Ratio 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-3m": {
                        "blurb": "Ratio 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-3s": {
                        "blurb": "Ratio 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-4m": {
                        "blurb": "Ratio 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-4s": {
                        "blurb": "Ratio 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-5m": {
                        "blurb": "Ratio 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-5s": {
                        "blurb": "Ratio 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-6m": {
                        "blurb": "Ratio 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-6s": {
                        "blurb": "Ratio 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-7m": {
                        "blurb": "Ratio 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-7s": {
                        "blurb": "Ratio 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-0m": {
                        "blurb": "Envelope level meter 0 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-0s": {
                        "blurb": "Envelope level meter 0 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-1m": {
                        "blurb": "Envelope level meter 1 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-1s": {
                        "blurb": "Envelope level meter 1 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-2m": {
                        "blurb": "Envelope level meter 2 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-2s": {
                        "blurb": "Envelope level meter 2 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-3m": {
                        "blurb": "Envelope level meter 3 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-3s": {
                        "blurb": "Envelope level meter 3 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-4m": {
                        "blurb": "Envelope level meter 4 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-4s": {
                        "blurb": "Envelope level meter 4 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-5m": {
                        "blurb": "Envelope level meter 5 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-5s": {
                        "blurb": "Envelope level meter 5 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-6m": {
                        "blurb": "Envelope level meter 6 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-6s": {
                        "blurb": "Envelope level meter 6 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-7m": {
                        "blurb": "Envelope level meter 7 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-7s": {
                        "blurb": "Envelope level meter 7 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "envb": {
                        "blurb": "Envelope boost",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Pink BT (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msenvb",
                        "writable": true
                    },
                    "flt-m": {
                        "blurb": "Band filter curves Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "flt-s": {
                        "blurb": "Band filter curves Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fre-0m": {
                        "blurb": "Frequency range end 0 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-0s": {
                        "blurb": "Frequency range end 0 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-1m": {
                        "blurb": "Frequency range end 1 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-1s": {
                        "blurb": "Frequency range end 1 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-2m": {
                        "blurb": "Frequency range end 2 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-2s": {
                        "blurb": "Frequency range end 2 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-3m": {
                        "blurb": "Frequency range end 3 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-3s": {
                        "blurb": "Frequency range end 3 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-4m": {
                        "blurb": "Frequency range end 4 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-4s": {
                        "blurb": "Frequency range end 4 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-5m": {
                        "blurb": "Frequency range end 5 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-5s": {
                        "blurb": "Frequency range end 5 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-6m": {
                        "blurb": "Frequency range end 6 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-6s": {
                        "blurb": "Frequency range end 6 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-7m": {
                        "blurb": "Frequency range end 7 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-7s": {
                        "blurb": "Frequency range end 7 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "g-dry": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-wet": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0m": {
                        "blurb": "Hue  0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0s": {
                        "blurb": "Hue  0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1m": {
                        "blurb": "Hue  1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1s": {
                        "blurb": "Hue  1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2m": {
                        "blurb": "Hue  2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2s": {
                        "blurb": "Hue  2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3m": {
                        "blurb": "Hue  3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3s": {
                        "blurb": "Hue  3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4m": {
                        "blurb": "Hue  4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4s": {
                        "blurb": "Hue  4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5m": {
                        "blurb": "Hue  5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5s": {
                        "blurb": "Hue  5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6m": {
                        "blurb": "Hue  6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6s": {
                        "blurb": "Hue  6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7m": {
                        "blurb": "Hue  7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7s": {
                        "blurb": "Hue  7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ife-m": {
                        "blurb": "Input FFT graph enable Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ife-s": {
                        "blurb": "Input FFT graph enable Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "kn-0m": {
                        "blurb": "Knee 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-0s": {
                        "blurb": "Knee 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-1m": {
                        "blurb": "Knee 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-1s": {
                        "blurb": "Knee 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-2m": {
                        "blurb": "Knee 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-2s": {
                        "blurb": "Knee 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-3m": {
                        "blurb": "Knee 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-3s": {
                        "blurb": "Knee 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-4m": {
                        "blurb": "Knee 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-4s": {
                        "blurb": "Knee 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-5m": {
                        "blurb": "Knee 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-5s": {
                        "blurb": "Knee 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-6m": {
                        "blurb": "Knee 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-6s": {
                        "blurb": "Knee 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-7m": {
                        "blurb": "Knee 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-7s": {
                        "blurb": "Knee 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-0m": {
                        "blurb": "Makeup gain 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-0s": {
                        "blurb": "Makeup gain 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-1m": {
                        "blurb": "Makeup gain 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-1s": {
                        "blurb": "Makeup gain 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-2m": {
                        "blurb": "Makeup gain 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-2s": {
                        "blurb": "Makeup gain 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-3m": {
                        "blurb": "Makeup gain 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-3s": {
                        "blurb": "Makeup gain 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-4m": {
                        "blurb": "Makeup gain 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-4s": {
                        "blurb": "Makeup gain 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-5m": {
                        "blurb": "Makeup gain 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-5s": {
                        "blurb": "Makeup gain 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-6m": {
                        "blurb": "Makeup gain 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-6s": {
                        "blurb": "Makeup gain 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-7m": {
                        "blurb": "Makeup gain 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-7s": {
                        "blurb": "Makeup gain 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Compressor mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Modern (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msmode",
                        "writable": true
                    },
                    "ofe-m": {
                        "blurb": "Output FFT graph enable Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofe-s": {
                        "blurb": "Output FFT graph enable Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl-0m": {
                        "blurb": "Release level 0 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-0s": {
                        "blurb": "Release level 0 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-1m": {
                        "blurb": "Release level 1 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-1s": {
                        "blurb": "Release level 1 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-2m": {
                        "blurb": "Release level 2 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-2s": {
                        "blurb": "Release level 2 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-3m": {
                        "blurb": "Release level 3 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-3s": {
                        "blurb": "Release level 3 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-4m": {
                        "blurb": "Release level 4 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-4s": {
                        "blurb": "Release level 4 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-5m": {
                        "blurb": "Release level 5 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-5s": {
                        "blurb": "Release level 5 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-6m": {
                        "blurb": "Release level 6 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-6s": {
                        "blurb": "Release level 6 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-7m": {
                        "blurb": "Release level 7 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-7s": {
                        "blurb": "Release level 7 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-0m": {
                        "blurb": "Reduction level meter 0 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-0s": {
                        "blurb": "Reduction level meter 0 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-1m": {
                        "blurb": "Reduction level meter 1 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-1s": {
                        "blurb": "Reduction level meter 1 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-2m": {
                        "blurb": "Reduction level meter 2 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-2s": {
                        "blurb": "Reduction level meter 2 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-3m": {
                        "blurb": "Reduction level meter 3 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-3s": {
                        "blurb": "Reduction level meter 3 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-4m": {
                        "blurb": "Reduction level meter 4 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-4s": {
                        "blurb": "Reduction level meter 4 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-5m": {
                        "blurb": "Reduction level meter 5 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-5s": {
                        "blurb": "Reduction level meter 5 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-6m": {
                        "blurb": "Reduction level meter 6 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-6s": {
                        "blurb": "Reduction level meter 6 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-7m": {
                        "blurb": "Reduction level meter 7 Mid",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-7s": {
                        "blurb": "Reduction level meter 7 Side",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-0m": {
                        "blurb": "Relative release level 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-0s": {
                        "blurb": "Relative release level 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-1m": {
                        "blurb": "Relative release level 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-1s": {
                        "blurb": "Relative release level 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-2m": {
                        "blurb": "Relative release level 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-2s": {
                        "blurb": "Relative release level 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-3m": {
                        "blurb": "Relative release level 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-3s": {
                        "blurb": "Relative release level 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-4m": {
                        "blurb": "Relative release level 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-4s": {
                        "blurb": "Relative release level 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-5m": {
                        "blurb": "Relative release level 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-5s": {
                        "blurb": "Relative release level 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-6m": {
                        "blurb": "Relative release level 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-6s": {
                        "blurb": "Relative release level 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-7m": {
                        "blurb": "Relative release level 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-7s": {
                        "blurb": "Relative release level 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-0m": {
                        "blurb": "Release time 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-0s": {
                        "blurb": "Release time 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-1m": {
                        "blurb": "Release time 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-1s": {
                        "blurb": "Release time 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-2m": {
                        "blurb": "Release time 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-2s": {
                        "blurb": "Release time 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-3m": {
                        "blurb": "Release time 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-3s": {
                        "blurb": "Release time 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-4m": {
                        "blurb": "Release time 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-4s": {
                        "blurb": "Release time 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-5m": {
                        "blurb": "Release time 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-5s": {
                        "blurb": "Release time 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-6m": {
                        "blurb": "Release time 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-6s": {
                        "blurb": "Release time 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-7m": {
                        "blurb": "Release time 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-7s": {
                        "blurb": "Release time 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schc-0m": {
                        "blurb": "Sidechain custom hi-cut 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-0s": {
                        "blurb": "Sidechain custom hi-cut 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-1m": {
                        "blurb": "Sidechain custom hi-cut 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-1s": {
                        "blurb": "Sidechain custom hi-cut 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-2m": {
                        "blurb": "Sidechain custom hi-cut 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-2s": {
                        "blurb": "Sidechain custom hi-cut 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-3m": {
                        "blurb": "Sidechain custom hi-cut 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-3s": {
                        "blurb": "Sidechain custom hi-cut 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-4m": {
                        "blurb": "Sidechain custom hi-cut 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-4s": {
                        "blurb": "Sidechain custom hi-cut 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-5m": {
                        "blurb": "Sidechain custom hi-cut 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-5s": {
                        "blurb": "Sidechain custom hi-cut 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-6m": {
                        "blurb": "Sidechain custom hi-cut 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-6s": {
                        "blurb": "Sidechain custom hi-cut 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-7m": {
                        "blurb": "Sidechain custom hi-cut 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-7s": {
                        "blurb": "Sidechain custom hi-cut 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schf-0m": {
                        "blurb": "Sidechain hi-cut frequency 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-0s": {
                        "blurb": "Sidechain hi-cut frequency 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-1m": {
                        "blurb": "Sidechain hi-cut frequency 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-1s": {
                        "blurb": "Sidechain hi-cut frequency 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-2m": {
                        "blurb": "Sidechain hi-cut frequency 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-2s": {
                        "blurb": "Sidechain hi-cut frequency 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-3m": {
                        "blurb": "Sidechain hi-cut frequency 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-3s": {
                        "blurb": "Sidechain hi-cut frequency 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-4m": {
                        "blurb": "Sidechain hi-cut frequency 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-4s": {
                        "blurb": "Sidechain hi-cut frequency 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-5m": {
                        "blurb": "Sidechain hi-cut frequency 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-5s": {
                        "blurb": "Sidechain hi-cut frequency 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-6m": {
                        "blurb": "Sidechain hi-cut frequency 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-6s": {
                        "blurb": "Sidechain hi-cut frequency 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-7m": {
                        "blurb": "Sidechain hi-cut frequency 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-7s": {
                        "blurb": "Sidechain hi-cut frequency 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclc-0m": {
                        "blurb": "Sidechain custom lo-cut 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-0s": {
                        "blurb": "Sidechain custom lo-cut 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-1m": {
                        "blurb": "Sidechain custom lo-cut 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-1s": {
                        "blurb": "Sidechain custom lo-cut 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-2m": {
                        "blurb": "Sidechain custom lo-cut 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-2s": {
                        "blurb": "Sidechain custom lo-cut 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-3m": {
                        "blurb": "Sidechain custom lo-cut 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-3s": {
                        "blurb": "Sidechain custom lo-cut 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-4m": {
                        "blurb": "Sidechain custom lo-cut 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-4s": {
                        "blurb": "Sidechain custom lo-cut 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-5m": {
                        "blurb": "Sidechain custom lo-cut 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-5s": {
                        "blurb": "Sidechain custom lo-cut 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-6m": {
                        "blurb": "Sidechain custom lo-cut 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-6s": {
                        "blurb": "Sidechain custom lo-cut 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-7m": {
                        "blurb": "Sidechain custom lo-cut 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-7s": {
                        "blurb": "Sidechain custom lo-cut 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclf-0m": {
                        "blurb": "Sidechain lo-cut frequency 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "20000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-0s": {
                        "blurb": "Sidechain lo-cut frequency 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "20000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-1m": {
                        "blurb": "Sidechain lo-cut frequency 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-1s": {
                        "blurb": "Sidechain lo-cut frequency 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-2m": {
                        "blurb": "Sidechain lo-cut frequency 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-2s": {
                        "blurb": "Sidechain lo-cut frequency 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-3m": {
                        "blurb": "Sidechain lo-cut frequency 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-3s": {
                        "blurb": "Sidechain lo-cut frequency 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-4m": {
                        "blurb": "Sidechain lo-cut frequency 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-4s": {
                        "blurb": "Sidechain lo-cut frequency 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-5m": {
                        "blurb": "Sidechain lo-cut frequency 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-5s": {
                        "blurb": "Sidechain lo-cut frequency 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-6m": {
                        "blurb": "Sidechain lo-cut frequency 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-6s": {
                        "blurb": "Sidechain lo-cut frequency 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-7m": {
                        "blurb": "Sidechain lo-cut frequency 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-7s": {
                        "blurb": "Sidechain lo-cut frequency 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scm-0m": {
                        "blurb": "Sidechain mode 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-0m",
                        "writable": true
                    },
                    "scm-0s": {
                        "blurb": "Sidechain mode 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-0s",
                        "writable": true
                    },
                    "scm-1m": {
                        "blurb": "Sidechain mode 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-1m",
                        "writable": true
                    },
                    "scm-1s": {
                        "blurb": "Sidechain mode 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-1s",
                        "writable": true
                    },
                    "scm-2m": {
                        "blurb": "Sidechain mode 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-2m",
                        "writable": true
                    },
                    "scm-2s": {
                        "blurb": "Sidechain mode 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-2s",
                        "writable": true
                    },
                    "scm-3m": {
                        "blurb": "Sidechain mode 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-3m",
                        "writable": true
                    },
                    "scm-3s": {
                        "blurb": "Sidechain mode 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-3s",
                        "writable": true
                    },
                    "scm-4m": {
                        "blurb": "Sidechain mode 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-4m",
                        "writable": true
                    },
                    "scm-4s": {
                        "blurb": "Sidechain mode 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-4s",
                        "writable": true
                    },
                    "scm-5m": {
                        "blurb": "Sidechain mode 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-5m",
                        "writable": true
                    },
                    "scm-5s": {
                        "blurb": "Sidechain mode 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-5s",
                        "writable": true
                    },
                    "scm-6m": {
                        "blurb": "Sidechain mode 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-6m",
                        "writable": true
                    },
                    "scm-6s": {
                        "blurb": "Sidechain mode 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-6s",
                        "writable": true
                    },
                    "scm-7m": {
                        "blurb": "Sidechain mode 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-7m",
                        "writable": true
                    },
                    "scm-7s": {
                        "blurb": "Sidechain mode 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscm-7s",
                        "writable": true
                    },
                    "scp-0m": {
                        "blurb": "Sidechain preamp 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-0s": {
                        "blurb": "Sidechain preamp 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-1m": {
                        "blurb": "Sidechain preamp 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-1s": {
                        "blurb": "Sidechain preamp 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-2m": {
                        "blurb": "Sidechain preamp 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-2s": {
                        "blurb": "Sidechain preamp 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-3m": {
                        "blurb": "Sidechain preamp 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-3s": {
                        "blurb": "Sidechain preamp 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-4m": {
                        "blurb": "Sidechain preamp 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-4s": {
                        "blurb": "Sidechain preamp 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-5m": {
                        "blurb": "Sidechain preamp 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-5s": {
                        "blurb": "Sidechain preamp 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-6m": {
                        "blurb": "Sidechain preamp 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-6s": {
                        "blurb": "Sidechain preamp 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-7m": {
                        "blurb": "Sidechain preamp 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-7s": {
                        "blurb": "Sidechain preamp 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-0m": {
                        "blurb": "Sidechain reactivity 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-0s": {
                        "blurb": "Sidechain reactivity 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-1m": {
                        "blurb": "Sidechain reactivity 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-1s": {
                        "blurb": "Sidechain reactivity 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-2m": {
                        "blurb": "Sidechain reactivity 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-2s": {
                        "blurb": "Sidechain reactivity 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-3m": {
                        "blurb": "Sidechain reactivity 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-3s": {
                        "blurb": "Sidechain reactivity 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-4m": {
                        "blurb": "Sidechain reactivity 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-4s": {
                        "blurb": "Sidechain reactivity 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-5m": {
                        "blurb": "Sidechain reactivity 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-5s": {
                        "blurb": "Sidechain reactivity 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-6m": {
                        "blurb": "Sidechain reactivity 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-6s": {
                        "blurb": "Sidechain reactivity 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-7m": {
                        "blurb": "Sidechain reactivity 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-7s": {
                        "blurb": "Sidechain reactivity 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-0m": {
                        "blurb": "Sidechain source 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-0m",
                        "writable": true
                    },
                    "scs-0s": {
                        "blurb": "Sidechain source 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-0s",
                        "writable": true
                    },
                    "scs-1m": {
                        "blurb": "Sidechain source 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-1m",
                        "writable": true
                    },
                    "scs-1s": {
                        "blurb": "Sidechain source 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-1s",
                        "writable": true
                    },
                    "scs-2m": {
                        "blurb": "Sidechain source 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-2m",
                        "writable": true
                    },
                    "scs-2s": {
                        "blurb": "Sidechain source 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-2s",
                        "writable": true
                    },
                    "scs-3m": {
                        "blurb": "Sidechain source 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-3m",
                        "writable": true
                    },
                    "scs-3s": {
                        "blurb": "Sidechain source 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-3s",
                        "writable": true
                    },
                    "scs-4m": {
                        "blurb": "Sidechain source 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-4m",
                        "writable": true
                    },
                    "scs-4s": {
                        "blurb": "Sidechain source 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-4s",
                        "writable": true
                    },
                    "scs-5m": {
                        "blurb": "Sidechain source 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-5m",
                        "writable": true
                    },
                    "scs-5s": {
                        "blurb": "Sidechain source 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-5s",
                        "writable": true
                    },
                    "scs-6m": {
                        "blurb": "Sidechain source 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-6m",
                        "writable": true
                    },
                    "scs-6s": {
                        "blurb": "Sidechain source 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-6s",
                        "writable": true
                    },
                    "scs-7m": {
                        "blurb": "Sidechain source 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-7m",
                        "writable": true
                    },
                    "scs-7s": {
                        "blurb": "Sidechain source 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-msscs-7s",
                        "writable": true
                    },
                    "sf-1m": {
                        "blurb": "Split frequency 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-1s": {
                        "blurb": "Split frequency 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-2m": {
                        "blurb": "Split frequency 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-2s": {
                        "blurb": "Split frequency 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-3m": {
                        "blurb": "Split frequency 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-3s": {
                        "blurb": "Split frequency 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-4m": {
                        "blurb": "Split frequency 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-4s": {
                        "blurb": "Split frequency 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-5m": {
                        "blurb": "Split frequency 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-5s": {
                        "blurb": "Split frequency 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-6m": {
                        "blurb": "Split frequency 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-6s": {
                        "blurb": "Split frequency 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-7m": {
                        "blurb": "Split frequency 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-7s": {
                        "blurb": "Split frequency 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-0m": {
                        "blurb": "Sidechain lookahead 0 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-0s": {
                        "blurb": "Sidechain lookahead 0 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-1m": {
                        "blurb": "Sidechain lookahead 1 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-1s": {
                        "blurb": "Sidechain lookahead 1 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-2m": {
                        "blurb": "Sidechain lookahead 2 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-2s": {
                        "blurb": "Sidechain lookahead 2 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-3m": {
                        "blurb": "Sidechain lookahead 3 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-3s": {
                        "blurb": "Sidechain lookahead 3 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-4m": {
                        "blurb": "Sidechain lookahead 4 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-4s": {
                        "blurb": "Sidechain lookahead 4 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-5m": {
                        "blurb": "Sidechain lookahead 5 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-5s": {
                        "blurb": "Sidechain lookahead 5 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-6m": {
                        "blurb": "Sidechain lookahead 6 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-6s": {
                        "blurb": "Sidechain lookahead 6 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-7m": {
                        "blurb": "Sidechain lookahead 7 Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-7s": {
                        "blurb": "Sidechain lookahead 7 Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.12589",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereo": {
                "author": "LSP LV2",
                "description": "LSP Multiband Compressor Stereo x8",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-mb-compressor-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Compressor",
                "long-name": "LSP Multiband Compressor Stereo x8",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "al-0": {
                        "blurb": "Attack level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-1": {
                        "blurb": "Attack level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-2": {
                        "blurb": "Attack level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-3": {
                        "blurb": "Attack level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-4": {
                        "blurb": "Attack level 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-5": {
                        "blurb": "Attack level 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-6": {
                        "blurb": "Attack level 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "al-7": {
                        "blurb": "Attack level 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "1",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-0": {
                        "blurb": "Attack time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-1": {
                        "blurb": "Attack time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-2": {
                        "blurb": "Attack time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-3": {
                        "blurb": "Attack time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-4": {
                        "blurb": "Attack time 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-5": {
                        "blurb": "Attack time 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-6": {
                        "blurb": "Attack time 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "at-7": {
                        "blurb": "Attack time 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bm-0": {
                        "blurb": "Mute band 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-1": {
                        "blurb": "Mute band 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-2": {
                        "blurb": "Mute band 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-3": {
                        "blurb": "Mute band 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-4": {
                        "blurb": "Mute band 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-5": {
                        "blurb": "Mute band 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-6": {
                        "blurb": "Mute band 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bm-7": {
                        "blurb": "Mute band 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-0": {
                        "blurb": "Solo band 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-1": {
                        "blurb": "Solo band 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-2": {
                        "blurb": "Solo band 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-3": {
                        "blurb": "Solo band 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-4": {
                        "blurb": "Solo band 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-5": {
                        "blurb": "Solo band 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-6": {
                        "blurb": "Solo band 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bs-7": {
                        "blurb": "Solo band 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bsel": {
                        "blurb": "Band selection",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Split (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereobsel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-1": {
                        "blurb": "Compression band enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-2": {
                        "blurb": "Compression band enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-3": {
                        "blurb": "Compression band enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-4": {
                        "blurb": "Compression band enable 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-5": {
                        "blurb": "Compression band enable 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-6": {
                        "blurb": "Compression band enable 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cbe-7": {
                        "blurb": "Compression band enable 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-0": {
                        "blurb": "Compressor enable 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-1": {
                        "blurb": "Compressor enable 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-2": {
                        "blurb": "Compressor enable 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-3": {
                        "blurb": "Compressor enable 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-4": {
                        "blurb": "Compressor enable 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-5": {
                        "blurb": "Compressor enable 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-6": {
                        "blurb": "Compressor enable 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ce-7": {
                        "blurb": "Compressor enable 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clm-0": {
                        "blurb": "Curve level meter 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-1": {
                        "blurb": "Curve level meter 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-2": {
                        "blurb": "Curve level meter 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-3": {
                        "blurb": "Curve level meter 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-4": {
                        "blurb": "Curve level meter 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-5": {
                        "blurb": "Curve level meter 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-6": {
                        "blurb": "Curve level meter 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "clm-7": {
                        "blurb": "Curve level meter 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "cm-0": {
                        "blurb": "Compression mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-0",
                        "writable": true
                    },
                    "cm-1": {
                        "blurb": "Compression mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-1",
                        "writable": true
                    },
                    "cm-2": {
                        "blurb": "Compression mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-2",
                        "writable": true
                    },
                    "cm-3": {
                        "blurb": "Compression mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-3",
                        "writable": true
                    },
                    "cm-4": {
                        "blurb": "Compression mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-4",
                        "writable": true
                    },
                    "cm-5": {
                        "blurb": "Compression mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-5",
                        "writable": true
                    },
                    "cm-6": {
                        "blurb": "Compression mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-6",
                        "writable": true
                    },
                    "cm-7": {
                        "blurb": "Compression mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Down (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-7",
                        "writable": true
                    },
                    "cr-0": {
                        "blurb": "Ratio 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-1": {
                        "blurb": "Ratio 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-2": {
                        "blurb": "Ratio 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-3": {
                        "blurb": "Ratio 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-4": {
                        "blurb": "Ratio 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-5": {
                        "blurb": "Ratio 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-6": {
                        "blurb": "Ratio 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cr-7": {
                        "blurb": "Ratio 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "elm-0": {
                        "blurb": "Envelope level meter 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-1": {
                        "blurb": "Envelope level meter 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-2": {
                        "blurb": "Envelope level meter 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-3": {
                        "blurb": "Envelope level meter 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-4": {
                        "blurb": "Envelope level meter 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-5": {
                        "blurb": "Envelope level meter 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-6": {
                        "blurb": "Envelope level meter 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "elm-7": {
                        "blurb": "Envelope level meter 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "envb": {
                        "blurb": "Envelope boost",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Pink BT (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoenvb",
                        "writable": true
                    },
                    "flt": {
                        "blurb": "Band filter curves",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fre-0": {
                        "blurb": "Frequency range end 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-1": {
                        "blurb": "Frequency range end 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-2": {
                        "blurb": "Frequency range end 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-3": {
                        "blurb": "Frequency range end 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-4": {
                        "blurb": "Frequency range end 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-5": {
                        "blurb": "Frequency range end 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-6": {
                        "blurb": "Frequency range end 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "fre-7": {
                        "blurb": "Frequency range end 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "g-dry": {
                        "blurb": "Dry gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-wet": {
                        "blurb": "Wet gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue  0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1": {
                        "blurb": "Hue  1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2": {
                        "blurb": "Hue  2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3": {
                        "blurb": "Hue  3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4": {
                        "blurb": "Hue  4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5": {
                        "blurb": "Hue  5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6": {
                        "blurb": "Hue  6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7": {
                        "blurb": "Hue  7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ife-l": {
                        "blurb": "Input FFT graph enable Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ife-r": {
                        "blurb": "Input FFT graph enable Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ilm-l": {
                        "blurb": "Input level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilm-r": {
                        "blurb": "Input level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "kn-0": {
                        "blurb": "Knee 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-1": {
                        "blurb": "Knee 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-2": {
                        "blurb": "Knee 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-3": {
                        "blurb": "Knee 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-4": {
                        "blurb": "Knee 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-5": {
                        "blurb": "Knee 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-6": {
                        "blurb": "Knee 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "kn-7": {
                        "blurb": "Knee 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.50118",
                        "max": "1",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-0": {
                        "blurb": "Makeup gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-1": {
                        "blurb": "Makeup gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-2": {
                        "blurb": "Makeup gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-3": {
                        "blurb": "Makeup gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-4": {
                        "blurb": "Makeup gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-5": {
                        "blurb": "Makeup gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-6": {
                        "blurb": "Makeup gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk-7": {
                        "blurb": "Makeup gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Compressor mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Modern (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereomode",
                        "writable": true
                    },
                    "ofe-l": {
                        "blurb": "Output FFT graph enable Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofe-r": {
                        "blurb": "Output FFT graph enable Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "olm-l": {
                        "blurb": "Output level meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "olm-r": {
                        "blurb": "Output level meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl-0": {
                        "blurb": "Release level 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-1": {
                        "blurb": "Release level 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-2": {
                        "blurb": "Release level 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-3": {
                        "blurb": "Release level 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-4": {
                        "blurb": "Release level 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-5": {
                        "blurb": "Release level 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-6": {
                        "blurb": "Release level 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rl-7": {
                        "blurb": "Release level 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-0": {
                        "blurb": "Reduction level meter 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-1": {
                        "blurb": "Reduction level meter 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-2": {
                        "blurb": "Reduction level meter 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-3": {
                        "blurb": "Reduction level meter 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-4": {
                        "blurb": "Reduction level meter 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-5": {
                        "blurb": "Reduction level meter 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-6": {
                        "blurb": "Reduction level meter 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rlm-7": {
                        "blurb": "Reduction level meter 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "15.8489",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl-0": {
                        "blurb": "Relative release level 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-1": {
                        "blurb": "Relative release level 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-2": {
                        "blurb": "Relative release level 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-3": {
                        "blurb": "Relative release level 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-4": {
                        "blurb": "Relative release level 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-5": {
                        "blurb": "Relative release level 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-6": {
                        "blurb": "Relative release level 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rrl-7": {
                        "blurb": "Relative release level 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "63.0957",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-0": {
                        "blurb": "Release time 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-1": {
                        "blurb": "Release time 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-2": {
                        "blurb": "Release time 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-3": {
                        "blurb": "Release time 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-4": {
                        "blurb": "Release time 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-5": {
                        "blurb": "Release time 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-6": {
                        "blurb": "Release time 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt-7": {
                        "blurb": "Release time 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "5000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schc-0": {
                        "blurb": "Sidechain custom hi-cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-1": {
                        "blurb": "Sidechain custom hi-cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-2": {
                        "blurb": "Sidechain custom hi-cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-3": {
                        "blurb": "Sidechain custom hi-cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-4": {
                        "blurb": "Sidechain custom hi-cut 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-5": {
                        "blurb": "Sidechain custom hi-cut 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-6": {
                        "blurb": "Sidechain custom hi-cut 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schc-7": {
                        "blurb": "Sidechain custom hi-cut 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "schf-0": {
                        "blurb": "Sidechain hi-cut frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-1": {
                        "blurb": "Sidechain hi-cut frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-2": {
                        "blurb": "Sidechain hi-cut frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-3": {
                        "blurb": "Sidechain hi-cut frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-4": {
                        "blurb": "Sidechain hi-cut frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-5": {
                        "blurb": "Sidechain hi-cut frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-6": {
                        "blurb": "Sidechain hi-cut frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "schf-7": {
                        "blurb": "Sidechain hi-cut frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclc-0": {
                        "blurb": "Sidechain custom lo-cut 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-1": {
                        "blurb": "Sidechain custom lo-cut 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-2": {
                        "blurb": "Sidechain custom lo-cut 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-3": {
                        "blurb": "Sidechain custom lo-cut 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-4": {
                        "blurb": "Sidechain custom lo-cut 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-5": {
                        "blurb": "Sidechain custom lo-cut 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-6": {
                        "blurb": "Sidechain custom lo-cut 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclc-7": {
                        "blurb": "Sidechain custom lo-cut 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sclf-0": {
                        "blurb": "Sidechain lo-cut frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "20000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-1": {
                        "blurb": "Sidechain lo-cut frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-2": {
                        "blurb": "Sidechain lo-cut frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-3": {
                        "blurb": "Sidechain lo-cut frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-4": {
                        "blurb": "Sidechain lo-cut frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-5": {
                        "blurb": "Sidechain lo-cut frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-6": {
                        "blurb": "Sidechain lo-cut frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sclf-7": {
                        "blurb": "Sidechain lo-cut frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scm-0": {
                        "blurb": "Sidechain mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-0",
                        "writable": true
                    },
                    "scm-1": {
                        "blurb": "Sidechain mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-1",
                        "writable": true
                    },
                    "scm-2": {
                        "blurb": "Sidechain mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-2",
                        "writable": true
                    },
                    "scm-3": {
                        "blurb": "Sidechain mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-3",
                        "writable": true
                    },
                    "scm-4": {
                        "blurb": "Sidechain mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-4",
                        "writable": true
                    },
                    "scm-5": {
                        "blurb": "Sidechain mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-5",
                        "writable": true
                    },
                    "scm-6": {
                        "blurb": "Sidechain mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-6",
                        "writable": true
                    },
                    "scm-7": {
                        "blurb": "Sidechain mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-7",
                        "writable": true
                    },
                    "scp-0": {
                        "blurb": "Sidechain preamp 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-1": {
                        "blurb": "Sidechain preamp 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-2": {
                        "blurb": "Sidechain preamp 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-3": {
                        "blurb": "Sidechain preamp 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-4": {
                        "blurb": "Sidechain preamp 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-5": {
                        "blurb": "Sidechain preamp 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-6": {
                        "blurb": "Sidechain preamp 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scp-7": {
                        "blurb": "Sidechain preamp 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-0": {
                        "blurb": "Sidechain reactivity 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-1": {
                        "blurb": "Sidechain reactivity 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-2": {
                        "blurb": "Sidechain reactivity 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-3": {
                        "blurb": "Sidechain reactivity 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-4": {
                        "blurb": "Sidechain reactivity 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-5": {
                        "blurb": "Sidechain reactivity 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-6": {
                        "blurb": "Sidechain reactivity 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scr-7": {
                        "blurb": "Sidechain reactivity 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scs-0": {
                        "blurb": "Sidechain source 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-0",
                        "writable": true
                    },
                    "scs-1": {
                        "blurb": "Sidechain source 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-1",
                        "writable": true
                    },
                    "scs-2": {
                        "blurb": "Sidechain source 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-2",
                        "writable": true
                    },
                    "scs-3": {
                        "blurb": "Sidechain source 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-3",
                        "writable": true
                    },
                    "scs-4": {
                        "blurb": "Sidechain source 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-4",
                        "writable": true
                    },
                    "scs-5": {
                        "blurb": "Sidechain source 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-5",
                        "writable": true
                    },
                    "scs-6": {
                        "blurb": "Sidechain source 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-6",
                        "writable": true
                    },
                    "scs-7": {
                        "blurb": "Sidechain source 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Mid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-7",
                        "writable": true
                    },
                    "sf-1": {
                        "blurb": "Split frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-2": {
                        "blurb": "Split frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-3": {
                        "blurb": "Split frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "252",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-4": {
                        "blurb": "Split frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "632",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-5": {
                        "blurb": "Split frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1587",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-6": {
                        "blurb": "Split frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3984",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sf-7": {
                        "blurb": "Split frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-0": {
                        "blurb": "Sidechain lookahead 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-1": {
                        "blurb": "Sidechain lookahead 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-2": {
                        "blurb": "Sidechain lookahead 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-3": {
                        "blurb": "Sidechain lookahead 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-4": {
                        "blurb": "Sidechain lookahead 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-5": {
                        "blurb": "Sidechain lookahead 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-6": {
                        "blurb": "Sidechain lookahead 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sla-7": {
                        "blurb": "Sidechain lookahead 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.12589",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-multisampler-x12": {
                "author": "LSP LV2",
                "description": "LSP Multi-Sampler x12 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-multisampler-x12",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Instrument",
                "long-name": "LSP Multi-Sampler x12 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fout": {
                        "blurb": "Note-off fadeout",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iact-0": {
                        "blurb": "Instrument activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-1": {
                        "blurb": "Instrument activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-10": {
                        "blurb": "Instrument activity 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-11": {
                        "blurb": "Instrument activity 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-2": {
                        "blurb": "Instrument activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-3": {
                        "blurb": "Instrument activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-4": {
                        "blurb": "Instrument activity 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-5": {
                        "blurb": "Instrument activity 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-6": {
                        "blurb": "Instrument activity 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-7": {
                        "blurb": "Instrument activity 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-8": {
                        "blurb": "Instrument activity 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-9": {
                        "blurb": "Instrument activity 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "imix-0": {
                        "blurb": "Instrument mix gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-1": {
                        "blurb": "Instrument mix gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-10": {
                        "blurb": "Instrument mix gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-11": {
                        "blurb": "Instrument mix gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-2": {
                        "blurb": "Instrument mix gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-3": {
                        "blurb": "Instrument mix gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-4": {
                        "blurb": "Instrument mix gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-5": {
                        "blurb": "Instrument mix gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-6": {
                        "blurb": "Instrument mix gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-7": {
                        "blurb": "Instrument mix gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-8": {
                        "blurb": "Instrument mix gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-9": {
                        "blurb": "Instrument mix gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ion-0": {
                        "blurb": "Instrument on 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-1": {
                        "blurb": "Instrument on 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-10": {
                        "blurb": "Instrument on 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-11": {
                        "blurb": "Instrument on 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-2": {
                        "blurb": "Instrument on 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-3": {
                        "blurb": "Instrument on 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-4": {
                        "blurb": "Instrument on 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-5": {
                        "blurb": "Instrument on 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-6": {
                        "blurb": "Instrument on 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-7": {
                        "blurb": "Instrument on 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-8": {
                        "blurb": "Instrument on 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-9": {
                        "blurb": "Instrument on 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "msel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Instruments (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-multisampler-x12msel",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Forced mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "muting": {
                        "blurb": "Mute on stop",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noff": {
                        "blurb": "Note-off handling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "panl-0": {
                        "blurb": "Instrument panorama left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-1": {
                        "blurb": "Instrument panorama left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-10": {
                        "blurb": "Instrument panorama left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-11": {
                        "blurb": "Instrument panorama left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-2": {
                        "blurb": "Instrument panorama left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-3": {
                        "blurb": "Instrument panorama left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-4": {
                        "blurb": "Instrument panorama left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-5": {
                        "blurb": "Instrument panorama left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-6": {
                        "blurb": "Instrument panorama left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-7": {
                        "blurb": "Instrument panorama left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-8": {
                        "blurb": "Instrument panorama left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-9": {
                        "blurb": "Instrument panorama left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-0": {
                        "blurb": "Instrument manorama right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-1": {
                        "blurb": "Instrument manorama right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-10": {
                        "blurb": "Instrument manorama right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-11": {
                        "blurb": "Instrument manorama right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-2": {
                        "blurb": "Instrument manorama right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-3": {
                        "blurb": "Instrument manorama right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-4": {
                        "blurb": "Instrument manorama right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-5": {
                        "blurb": "Instrument manorama right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-6": {
                        "blurb": "Instrument manorama right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-7": {
                        "blurb": "Instrument manorama right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-8": {
                        "blurb": "Instrument manorama right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-9": {
                        "blurb": "Instrument manorama right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-multisampler-x24": {
                "author": "LSP LV2",
                "description": "LSP Multi-Sampler x24 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-multisampler-x24",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Instrument",
                "long-name": "LSP Multi-Sampler x24 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fout": {
                        "blurb": "Note-off fadeout",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iact-0": {
                        "blurb": "Instrument activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-1": {
                        "blurb": "Instrument activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-10": {
                        "blurb": "Instrument activity 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-11": {
                        "blurb": "Instrument activity 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-12": {
                        "blurb": "Instrument activity 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-13": {
                        "blurb": "Instrument activity 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-14": {
                        "blurb": "Instrument activity 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-15": {
                        "blurb": "Instrument activity 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-16": {
                        "blurb": "Instrument activity 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-17": {
                        "blurb": "Instrument activity 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-18": {
                        "blurb": "Instrument activity 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-19": {
                        "blurb": "Instrument activity 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-2": {
                        "blurb": "Instrument activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-20": {
                        "blurb": "Instrument activity 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-21": {
                        "blurb": "Instrument activity 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-22": {
                        "blurb": "Instrument activity 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-23": {
                        "blurb": "Instrument activity 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-3": {
                        "blurb": "Instrument activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-4": {
                        "blurb": "Instrument activity 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-5": {
                        "blurb": "Instrument activity 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-6": {
                        "blurb": "Instrument activity 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-7": {
                        "blurb": "Instrument activity 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-8": {
                        "blurb": "Instrument activity 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-9": {
                        "blurb": "Instrument activity 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "imix-0": {
                        "blurb": "Instrument mix gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-1": {
                        "blurb": "Instrument mix gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-10": {
                        "blurb": "Instrument mix gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-11": {
                        "blurb": "Instrument mix gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-12": {
                        "blurb": "Instrument mix gain 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-13": {
                        "blurb": "Instrument mix gain 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-14": {
                        "blurb": "Instrument mix gain 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-15": {
                        "blurb": "Instrument mix gain 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-16": {
                        "blurb": "Instrument mix gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-17": {
                        "blurb": "Instrument mix gain 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-18": {
                        "blurb": "Instrument mix gain 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-19": {
                        "blurb": "Instrument mix gain 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-2": {
                        "blurb": "Instrument mix gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-20": {
                        "blurb": "Instrument mix gain 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-21": {
                        "blurb": "Instrument mix gain 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-22": {
                        "blurb": "Instrument mix gain 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-23": {
                        "blurb": "Instrument mix gain 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-3": {
                        "blurb": "Instrument mix gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-4": {
                        "blurb": "Instrument mix gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-5": {
                        "blurb": "Instrument mix gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-6": {
                        "blurb": "Instrument mix gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-7": {
                        "blurb": "Instrument mix gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-8": {
                        "blurb": "Instrument mix gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-9": {
                        "blurb": "Instrument mix gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ion-0": {
                        "blurb": "Instrument on 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-1": {
                        "blurb": "Instrument on 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-10": {
                        "blurb": "Instrument on 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-11": {
                        "blurb": "Instrument on 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-12": {
                        "blurb": "Instrument on 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-13": {
                        "blurb": "Instrument on 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-14": {
                        "blurb": "Instrument on 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-15": {
                        "blurb": "Instrument on 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-16": {
                        "blurb": "Instrument on 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-17": {
                        "blurb": "Instrument on 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-18": {
                        "blurb": "Instrument on 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-19": {
                        "blurb": "Instrument on 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-2": {
                        "blurb": "Instrument on 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-20": {
                        "blurb": "Instrument on 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-21": {
                        "blurb": "Instrument on 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-22": {
                        "blurb": "Instrument on 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-23": {
                        "blurb": "Instrument on 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-3": {
                        "blurb": "Instrument on 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-4": {
                        "blurb": "Instrument on 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-5": {
                        "blurb": "Instrument on 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-6": {
                        "blurb": "Instrument on 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-7": {
                        "blurb": "Instrument on 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-8": {
                        "blurb": "Instrument on 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-9": {
                        "blurb": "Instrument on 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "msel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Instruments (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-multisampler-x24msel",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Forced mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "muting": {
                        "blurb": "Mute on stop",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noff": {
                        "blurb": "Note-off handling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "panl-0": {
                        "blurb": "Instrument panorama left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-1": {
                        "blurb": "Instrument panorama left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-10": {
                        "blurb": "Instrument panorama left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-11": {
                        "blurb": "Instrument panorama left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-12": {
                        "blurb": "Instrument panorama left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-13": {
                        "blurb": "Instrument panorama left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-14": {
                        "blurb": "Instrument panorama left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-15": {
                        "blurb": "Instrument panorama left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-16": {
                        "blurb": "Instrument panorama left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-17": {
                        "blurb": "Instrument panorama left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-18": {
                        "blurb": "Instrument panorama left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-19": {
                        "blurb": "Instrument panorama left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-2": {
                        "blurb": "Instrument panorama left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-20": {
                        "blurb": "Instrument panorama left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-21": {
                        "blurb": "Instrument panorama left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-22": {
                        "blurb": "Instrument panorama left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-23": {
                        "blurb": "Instrument panorama left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-3": {
                        "blurb": "Instrument panorama left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-4": {
                        "blurb": "Instrument panorama left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-5": {
                        "blurb": "Instrument panorama left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-6": {
                        "blurb": "Instrument panorama left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-7": {
                        "blurb": "Instrument panorama left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-8": {
                        "blurb": "Instrument panorama left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-9": {
                        "blurb": "Instrument panorama left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-0": {
                        "blurb": "Instrument manorama right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-1": {
                        "blurb": "Instrument manorama right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-10": {
                        "blurb": "Instrument manorama right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-11": {
                        "blurb": "Instrument manorama right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-12": {
                        "blurb": "Instrument manorama right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-13": {
                        "blurb": "Instrument manorama right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-14": {
                        "blurb": "Instrument manorama right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-15": {
                        "blurb": "Instrument manorama right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-16": {
                        "blurb": "Instrument manorama right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-17": {
                        "blurb": "Instrument manorama right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-18": {
                        "blurb": "Instrument manorama right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-19": {
                        "blurb": "Instrument manorama right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-2": {
                        "blurb": "Instrument manorama right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-20": {
                        "blurb": "Instrument manorama right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-21": {
                        "blurb": "Instrument manorama right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-22": {
                        "blurb": "Instrument manorama right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-23": {
                        "blurb": "Instrument manorama right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-3": {
                        "blurb": "Instrument manorama right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-4": {
                        "blurb": "Instrument manorama right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-5": {
                        "blurb": "Instrument manorama right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-6": {
                        "blurb": "Instrument manorama right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-7": {
                        "blurb": "Instrument manorama right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-8": {
                        "blurb": "Instrument manorama right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-9": {
                        "blurb": "Instrument manorama right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-multisampler-x48": {
                "author": "LSP LV2",
                "description": "LSP Multi-Sampler x48 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-multisampler-x48",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Instrument",
                "long-name": "LSP Multi-Sampler x48 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fout": {
                        "blurb": "Note-off fadeout",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iact-0": {
                        "blurb": "Instrument activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-1": {
                        "blurb": "Instrument activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-10": {
                        "blurb": "Instrument activity 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-11": {
                        "blurb": "Instrument activity 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-12": {
                        "blurb": "Instrument activity 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-13": {
                        "blurb": "Instrument activity 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-14": {
                        "blurb": "Instrument activity 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-15": {
                        "blurb": "Instrument activity 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-16": {
                        "blurb": "Instrument activity 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-17": {
                        "blurb": "Instrument activity 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-18": {
                        "blurb": "Instrument activity 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-19": {
                        "blurb": "Instrument activity 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-2": {
                        "blurb": "Instrument activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-20": {
                        "blurb": "Instrument activity 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-21": {
                        "blurb": "Instrument activity 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-22": {
                        "blurb": "Instrument activity 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-23": {
                        "blurb": "Instrument activity 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-24": {
                        "blurb": "Instrument activity 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-25": {
                        "blurb": "Instrument activity 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-26": {
                        "blurb": "Instrument activity 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-27": {
                        "blurb": "Instrument activity 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-28": {
                        "blurb": "Instrument activity 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-29": {
                        "blurb": "Instrument activity 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-3": {
                        "blurb": "Instrument activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-30": {
                        "blurb": "Instrument activity 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-31": {
                        "blurb": "Instrument activity 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-32": {
                        "blurb": "Instrument activity 32",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-33": {
                        "blurb": "Instrument activity 33",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-34": {
                        "blurb": "Instrument activity 34",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-35": {
                        "blurb": "Instrument activity 35",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-36": {
                        "blurb": "Instrument activity 36",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-37": {
                        "blurb": "Instrument activity 37",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-38": {
                        "blurb": "Instrument activity 38",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-39": {
                        "blurb": "Instrument activity 39",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-4": {
                        "blurb": "Instrument activity 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-40": {
                        "blurb": "Instrument activity 40",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-41": {
                        "blurb": "Instrument activity 41",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-42": {
                        "blurb": "Instrument activity 42",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-43": {
                        "blurb": "Instrument activity 43",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-44": {
                        "blurb": "Instrument activity 44",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-45": {
                        "blurb": "Instrument activity 45",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-46": {
                        "blurb": "Instrument activity 46",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-47": {
                        "blurb": "Instrument activity 47",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-5": {
                        "blurb": "Instrument activity 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-6": {
                        "blurb": "Instrument activity 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-7": {
                        "blurb": "Instrument activity 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-8": {
                        "blurb": "Instrument activity 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "iact-9": {
                        "blurb": "Instrument activity 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "imix-0": {
                        "blurb": "Instrument mix gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-1": {
                        "blurb": "Instrument mix gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-10": {
                        "blurb": "Instrument mix gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-11": {
                        "blurb": "Instrument mix gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-12": {
                        "blurb": "Instrument mix gain 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-13": {
                        "blurb": "Instrument mix gain 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-14": {
                        "blurb": "Instrument mix gain 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-15": {
                        "blurb": "Instrument mix gain 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-16": {
                        "blurb": "Instrument mix gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-17": {
                        "blurb": "Instrument mix gain 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-18": {
                        "blurb": "Instrument mix gain 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-19": {
                        "blurb": "Instrument mix gain 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-2": {
                        "blurb": "Instrument mix gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-20": {
                        "blurb": "Instrument mix gain 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-21": {
                        "blurb": "Instrument mix gain 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-22": {
                        "blurb": "Instrument mix gain 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-23": {
                        "blurb": "Instrument mix gain 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-24": {
                        "blurb": "Instrument mix gain 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-25": {
                        "blurb": "Instrument mix gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-26": {
                        "blurb": "Instrument mix gain 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-27": {
                        "blurb": "Instrument mix gain 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-28": {
                        "blurb": "Instrument mix gain 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-29": {
                        "blurb": "Instrument mix gain 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-3": {
                        "blurb": "Instrument mix gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-30": {
                        "blurb": "Instrument mix gain 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-31": {
                        "blurb": "Instrument mix gain 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-32": {
                        "blurb": "Instrument mix gain 32",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-33": {
                        "blurb": "Instrument mix gain 33",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-34": {
                        "blurb": "Instrument mix gain 34",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-35": {
                        "blurb": "Instrument mix gain 35",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-36": {
                        "blurb": "Instrument mix gain 36",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-37": {
                        "blurb": "Instrument mix gain 37",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-38": {
                        "blurb": "Instrument mix gain 38",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-39": {
                        "blurb": "Instrument mix gain 39",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-4": {
                        "blurb": "Instrument mix gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-40": {
                        "blurb": "Instrument mix gain 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-41": {
                        "blurb": "Instrument mix gain 41",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-42": {
                        "blurb": "Instrument mix gain 42",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-43": {
                        "blurb": "Instrument mix gain 43",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-44": {
                        "blurb": "Instrument mix gain 44",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-45": {
                        "blurb": "Instrument mix gain 45",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-46": {
                        "blurb": "Instrument mix gain 46",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-47": {
                        "blurb": "Instrument mix gain 47",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-5": {
                        "blurb": "Instrument mix gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-6": {
                        "blurb": "Instrument mix gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-7": {
                        "blurb": "Instrument mix gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-8": {
                        "blurb": "Instrument mix gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imix-9": {
                        "blurb": "Instrument mix gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ion-0": {
                        "blurb": "Instrument on 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-1": {
                        "blurb": "Instrument on 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-10": {
                        "blurb": "Instrument on 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-11": {
                        "blurb": "Instrument on 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-12": {
                        "blurb": "Instrument on 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-13": {
                        "blurb": "Instrument on 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-14": {
                        "blurb": "Instrument on 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-15": {
                        "blurb": "Instrument on 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-16": {
                        "blurb": "Instrument on 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-17": {
                        "blurb": "Instrument on 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-18": {
                        "blurb": "Instrument on 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-19": {
                        "blurb": "Instrument on 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-2": {
                        "blurb": "Instrument on 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-20": {
                        "blurb": "Instrument on 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-21": {
                        "blurb": "Instrument on 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-22": {
                        "blurb": "Instrument on 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-23": {
                        "blurb": "Instrument on 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-24": {
                        "blurb": "Instrument on 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-25": {
                        "blurb": "Instrument on 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-26": {
                        "blurb": "Instrument on 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-27": {
                        "blurb": "Instrument on 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-28": {
                        "blurb": "Instrument on 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-29": {
                        "blurb": "Instrument on 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-3": {
                        "blurb": "Instrument on 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-30": {
                        "blurb": "Instrument on 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-31": {
                        "blurb": "Instrument on 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-32": {
                        "blurb": "Instrument on 32",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-33": {
                        "blurb": "Instrument on 33",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-34": {
                        "blurb": "Instrument on 34",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-35": {
                        "blurb": "Instrument on 35",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-36": {
                        "blurb": "Instrument on 36",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-37": {
                        "blurb": "Instrument on 37",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-38": {
                        "blurb": "Instrument on 38",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-39": {
                        "blurb": "Instrument on 39",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-4": {
                        "blurb": "Instrument on 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-40": {
                        "blurb": "Instrument on 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-41": {
                        "blurb": "Instrument on 41",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-42": {
                        "blurb": "Instrument on 42",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-43": {
                        "blurb": "Instrument on 43",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-44": {
                        "blurb": "Instrument on 44",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-45": {
                        "blurb": "Instrument on 45",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-46": {
                        "blurb": "Instrument on 46",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-47": {
                        "blurb": "Instrument on 47",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-5": {
                        "blurb": "Instrument on 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-6": {
                        "blurb": "Instrument on 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-7": {
                        "blurb": "Instrument on 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-8": {
                        "blurb": "Instrument on 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ion-9": {
                        "blurb": "Instrument on 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "msel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Instruments (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-multisampler-x48msel",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Forced mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "muting": {
                        "blurb": "Mute on stop",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noff": {
                        "blurb": "Note-off handling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "panl-0": {
                        "blurb": "Instrument panorama left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-1": {
                        "blurb": "Instrument panorama left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-10": {
                        "blurb": "Instrument panorama left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-11": {
                        "blurb": "Instrument panorama left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-12": {
                        "blurb": "Instrument panorama left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-13": {
                        "blurb": "Instrument panorama left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-14": {
                        "blurb": "Instrument panorama left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-15": {
                        "blurb": "Instrument panorama left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-16": {
                        "blurb": "Instrument panorama left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-17": {
                        "blurb": "Instrument panorama left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-18": {
                        "blurb": "Instrument panorama left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-19": {
                        "blurb": "Instrument panorama left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-2": {
                        "blurb": "Instrument panorama left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-20": {
                        "blurb": "Instrument panorama left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-21": {
                        "blurb": "Instrument panorama left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-22": {
                        "blurb": "Instrument panorama left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-23": {
                        "blurb": "Instrument panorama left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-24": {
                        "blurb": "Instrument panorama left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-25": {
                        "blurb": "Instrument panorama left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-26": {
                        "blurb": "Instrument panorama left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-27": {
                        "blurb": "Instrument panorama left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-28": {
                        "blurb": "Instrument panorama left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-29": {
                        "blurb": "Instrument panorama left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-3": {
                        "blurb": "Instrument panorama left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-30": {
                        "blurb": "Instrument panorama left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-31": {
                        "blurb": "Instrument panorama left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-32": {
                        "blurb": "Instrument panorama left 32",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-33": {
                        "blurb": "Instrument panorama left 33",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-34": {
                        "blurb": "Instrument panorama left 34",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-35": {
                        "blurb": "Instrument panorama left 35",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-36": {
                        "blurb": "Instrument panorama left 36",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-37": {
                        "blurb": "Instrument panorama left 37",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-38": {
                        "blurb": "Instrument panorama left 38",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-39": {
                        "blurb": "Instrument panorama left 39",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-4": {
                        "blurb": "Instrument panorama left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-40": {
                        "blurb": "Instrument panorama left 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-41": {
                        "blurb": "Instrument panorama left 41",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-42": {
                        "blurb": "Instrument panorama left 42",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-43": {
                        "blurb": "Instrument panorama left 43",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-44": {
                        "blurb": "Instrument panorama left 44",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-45": {
                        "blurb": "Instrument panorama left 45",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-46": {
                        "blurb": "Instrument panorama left 46",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-47": {
                        "blurb": "Instrument panorama left 47",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-5": {
                        "blurb": "Instrument panorama left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-6": {
                        "blurb": "Instrument panorama left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-7": {
                        "blurb": "Instrument panorama left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-8": {
                        "blurb": "Instrument panorama left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panl-9": {
                        "blurb": "Instrument panorama left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-0": {
                        "blurb": "Instrument manorama right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-1": {
                        "blurb": "Instrument manorama right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-10": {
                        "blurb": "Instrument manorama right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-11": {
                        "blurb": "Instrument manorama right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-12": {
                        "blurb": "Instrument manorama right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-13": {
                        "blurb": "Instrument manorama right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-14": {
                        "blurb": "Instrument manorama right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-15": {
                        "blurb": "Instrument manorama right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-16": {
                        "blurb": "Instrument manorama right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-17": {
                        "blurb": "Instrument manorama right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-18": {
                        "blurb": "Instrument manorama right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-19": {
                        "blurb": "Instrument manorama right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-2": {
                        "blurb": "Instrument manorama right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-20": {
                        "blurb": "Instrument manorama right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-21": {
                        "blurb": "Instrument manorama right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-22": {
                        "blurb": "Instrument manorama right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-23": {
                        "blurb": "Instrument manorama right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-24": {
                        "blurb": "Instrument manorama right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-25": {
                        "blurb": "Instrument manorama right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-26": {
                        "blurb": "Instrument manorama right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-27": {
                        "blurb": "Instrument manorama right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-28": {
                        "blurb": "Instrument manorama right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-29": {
                        "blurb": "Instrument manorama right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-3": {
                        "blurb": "Instrument manorama right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-30": {
                        "blurb": "Instrument manorama right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-31": {
                        "blurb": "Instrument manorama right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-32": {
                        "blurb": "Instrument manorama right 32",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-33": {
                        "blurb": "Instrument manorama right 33",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-34": {
                        "blurb": "Instrument manorama right 34",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-35": {
                        "blurb": "Instrument manorama right 35",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-36": {
                        "blurb": "Instrument manorama right 36",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-37": {
                        "blurb": "Instrument manorama right 37",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-38": {
                        "blurb": "Instrument manorama right 38",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-39": {
                        "blurb": "Instrument manorama right 39",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-4": {
                        "blurb": "Instrument manorama right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-40": {
                        "blurb": "Instrument manorama right 40",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-41": {
                        "blurb": "Instrument manorama right 41",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-42": {
                        "blurb": "Instrument manorama right 42",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-43": {
                        "blurb": "Instrument manorama right 43",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-44": {
                        "blurb": "Instrument manorama right 44",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-45": {
                        "blurb": "Instrument manorama right 45",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-46": {
                        "blurb": "Instrument manorama right 46",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-47": {
                        "blurb": "Instrument manorama right 47",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-5": {
                        "blurb": "Instrument manorama right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-6": {
                        "blurb": "Instrument manorama right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-7": {
                        "blurb": "Instrument manorama right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-8": {
                        "blurb": "Instrument manorama right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "panr-9": {
                        "blurb": "Instrument manorama right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-oscillator-mono": {
                "author": "LSP LV2",
                "description": "LSP Oscillator Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-oscillator-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Oscillator",
                "long-name": "LSP Oscillator Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dcoff": {
                        "blurb": "DC Offset",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "freq": {
                        "blurb": "Frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "440",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iniph": {
                        "blurb": "Initial Phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "invps": {
                        "blurb": "Invert Parabolic Signal",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "invss": {
                        "blurb": "Invert Squared Sinusoids",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pwdth": {
                        "blurb": "Width",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rdtrt": {
                        "blurb": "Duty Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scf": {
                        "blurb": "Function",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Sine (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-oscillator-monoscf",
                        "writable": true
                    },
                    "scm": {
                        "blurb": "Operation Mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Add (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-oscillator-monoscm",
                        "writable": true
                    },
                    "scom": {
                        "blurb": "Oversampler Mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x8 (5)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-oscillator-monoscom",
                        "writable": true
                    },
                    "scr": {
                        "blurb": "DC Reference",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Wave DC (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-oscillator-monoscr",
                        "writable": true
                    },
                    "swdth": {
                        "blurb": "Width",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tflrt": {
                        "blurb": "Fall Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tnwrt": {
                        "blurb": "Negative Width",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tpwrt": {
                        "blurb": "Positive Width",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "trsrt": {
                        "blurb": "Raise Ratio",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lr": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x16 LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x16-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x16 LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fl-0": {
                        "blurb": "Frequency Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-1": {
                        "blurb": "Frequency Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-10": {
                        "blurb": "Frequency Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-11": {
                        "blurb": "Frequency Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-12": {
                        "blurb": "Frequency Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-13": {
                        "blurb": "Frequency Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-14": {
                        "blurb": "Frequency Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-15": {
                        "blurb": "Frequency Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-2": {
                        "blurb": "Frequency Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-3": {
                        "blurb": "Frequency Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-4": {
                        "blurb": "Frequency Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-5": {
                        "blurb": "Frequency Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-6": {
                        "blurb": "Frequency Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-7": {
                        "blurb": "Frequency Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-8": {
                        "blurb": "Frequency Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-9": {
                        "blurb": "Frequency Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fml-0": {
                        "blurb": "Filter mode Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-0",
                        "writable": true
                    },
                    "fml-1": {
                        "blurb": "Filter mode Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-1",
                        "writable": true
                    },
                    "fml-10": {
                        "blurb": "Filter mode Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-10",
                        "writable": true
                    },
                    "fml-11": {
                        "blurb": "Filter mode Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-11",
                        "writable": true
                    },
                    "fml-12": {
                        "blurb": "Filter mode Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-12",
                        "writable": true
                    },
                    "fml-13": {
                        "blurb": "Filter mode Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-13",
                        "writable": true
                    },
                    "fml-14": {
                        "blurb": "Filter mode Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-14",
                        "writable": true
                    },
                    "fml-15": {
                        "blurb": "Filter mode Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-15",
                        "writable": true
                    },
                    "fml-2": {
                        "blurb": "Filter mode Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-2",
                        "writable": true
                    },
                    "fml-3": {
                        "blurb": "Filter mode Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-3",
                        "writable": true
                    },
                    "fml-4": {
                        "blurb": "Filter mode Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-4",
                        "writable": true
                    },
                    "fml-5": {
                        "blurb": "Filter mode Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-5",
                        "writable": true
                    },
                    "fml-6": {
                        "blurb": "Filter mode Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-6",
                        "writable": true
                    },
                    "fml-7": {
                        "blurb": "Filter mode Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-7",
                        "writable": true
                    },
                    "fml-8": {
                        "blurb": "Filter mode Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-8",
                        "writable": true
                    },
                    "fml-9": {
                        "blurb": "Filter mode Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-9",
                        "writable": true
                    },
                    "fmr-0": {
                        "blurb": "Filter mode Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-0",
                        "writable": true
                    },
                    "fmr-1": {
                        "blurb": "Filter mode Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-1",
                        "writable": true
                    },
                    "fmr-10": {
                        "blurb": "Filter mode Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-10",
                        "writable": true
                    },
                    "fmr-11": {
                        "blurb": "Filter mode Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-11",
                        "writable": true
                    },
                    "fmr-12": {
                        "blurb": "Filter mode Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-12",
                        "writable": true
                    },
                    "fmr-13": {
                        "blurb": "Filter mode Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-13",
                        "writable": true
                    },
                    "fmr-14": {
                        "blurb": "Filter mode Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-14",
                        "writable": true
                    },
                    "fmr-15": {
                        "blurb": "Filter mode Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-15",
                        "writable": true
                    },
                    "fmr-2": {
                        "blurb": "Filter mode Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-2",
                        "writable": true
                    },
                    "fmr-3": {
                        "blurb": "Filter mode Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-3",
                        "writable": true
                    },
                    "fmr-4": {
                        "blurb": "Filter mode Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-4",
                        "writable": true
                    },
                    "fmr-5": {
                        "blurb": "Filter mode Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-5",
                        "writable": true
                    },
                    "fmr-6": {
                        "blurb": "Filter mode Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-6",
                        "writable": true
                    },
                    "fmr-7": {
                        "blurb": "Filter mode Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-7",
                        "writable": true
                    },
                    "fmr-8": {
                        "blurb": "Filter mode Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-8",
                        "writable": true
                    },
                    "fmr-9": {
                        "blurb": "Filter mode Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-9",
                        "writable": true
                    },
                    "fr-0": {
                        "blurb": "Frequency Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-1": {
                        "blurb": "Frequency Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-10": {
                        "blurb": "Frequency Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-11": {
                        "blurb": "Frequency Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-12": {
                        "blurb": "Frequency Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-13": {
                        "blurb": "Frequency Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-14": {
                        "blurb": "Frequency Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-15": {
                        "blurb": "Frequency Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-2": {
                        "blurb": "Frequency Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-3": {
                        "blurb": "Frequency Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-4": {
                        "blurb": "Frequency Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-5": {
                        "blurb": "Frequency Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-6": {
                        "blurb": "Frequency Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-7": {
                        "blurb": "Frequency Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-8": {
                        "blurb": "Frequency Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-9": {
                        "blurb": "Frequency Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frqs-l": {
                        "blurb": "Frequency shift Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frqs-r": {
                        "blurb": "Frequency shift Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters Left 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfsel",
                        "writable": true
                    },
                    "ftl-0": {
                        "blurb": "Filter type Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-0",
                        "writable": true
                    },
                    "ftl-1": {
                        "blurb": "Filter type Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-1",
                        "writable": true
                    },
                    "ftl-10": {
                        "blurb": "Filter type Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-10",
                        "writable": true
                    },
                    "ftl-11": {
                        "blurb": "Filter type Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-11",
                        "writable": true
                    },
                    "ftl-12": {
                        "blurb": "Filter type Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-12",
                        "writable": true
                    },
                    "ftl-13": {
                        "blurb": "Filter type Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-13",
                        "writable": true
                    },
                    "ftl-14": {
                        "blurb": "Filter type Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-14",
                        "writable": true
                    },
                    "ftl-15": {
                        "blurb": "Filter type Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-15",
                        "writable": true
                    },
                    "ftl-2": {
                        "blurb": "Filter type Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-2",
                        "writable": true
                    },
                    "ftl-3": {
                        "blurb": "Filter type Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-3",
                        "writable": true
                    },
                    "ftl-4": {
                        "blurb": "Filter type Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-4",
                        "writable": true
                    },
                    "ftl-5": {
                        "blurb": "Filter type Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-5",
                        "writable": true
                    },
                    "ftl-6": {
                        "blurb": "Filter type Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-6",
                        "writable": true
                    },
                    "ftl-7": {
                        "blurb": "Filter type Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-7",
                        "writable": true
                    },
                    "ftl-8": {
                        "blurb": "Filter type Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-8",
                        "writable": true
                    },
                    "ftl-9": {
                        "blurb": "Filter type Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-9",
                        "writable": true
                    },
                    "ftr-0": {
                        "blurb": "Filter type Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-0",
                        "writable": true
                    },
                    "ftr-1": {
                        "blurb": "Filter type Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-1",
                        "writable": true
                    },
                    "ftr-10": {
                        "blurb": "Filter type Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-10",
                        "writable": true
                    },
                    "ftr-11": {
                        "blurb": "Filter type Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-11",
                        "writable": true
                    },
                    "ftr-12": {
                        "blurb": "Filter type Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-12",
                        "writable": true
                    },
                    "ftr-13": {
                        "blurb": "Filter type Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-13",
                        "writable": true
                    },
                    "ftr-14": {
                        "blurb": "Filter type Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-14",
                        "writable": true
                    },
                    "ftr-15": {
                        "blurb": "Filter type Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-15",
                        "writable": true
                    },
                    "ftr-2": {
                        "blurb": "Filter type Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-2",
                        "writable": true
                    },
                    "ftr-3": {
                        "blurb": "Filter type Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-3",
                        "writable": true
                    },
                    "ftr-4": {
                        "blurb": "Filter type Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-4",
                        "writable": true
                    },
                    "ftr-5": {
                        "blurb": "Filter type Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-5",
                        "writable": true
                    },
                    "ftr-6": {
                        "blurb": "Filter type Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-6",
                        "writable": true
                    },
                    "ftr-7": {
                        "blurb": "Filter type Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-7",
                        "writable": true
                    },
                    "ftr-8": {
                        "blurb": "Filter type Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-8",
                        "writable": true
                    },
                    "ftr-9": {
                        "blurb": "Filter type Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-9",
                        "writable": true
                    },
                    "fvl-0": {
                        "blurb": "Filter visibility Left 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-1": {
                        "blurb": "Filter visibility Left 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-10": {
                        "blurb": "Filter visibility Left 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-11": {
                        "blurb": "Filter visibility Left 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-12": {
                        "blurb": "Filter visibility Left 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-13": {
                        "blurb": "Filter visibility Left 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-14": {
                        "blurb": "Filter visibility Left 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-15": {
                        "blurb": "Filter visibility Left 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-2": {
                        "blurb": "Filter visibility Left 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-3": {
                        "blurb": "Filter visibility Left 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-4": {
                        "blurb": "Filter visibility Left 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-5": {
                        "blurb": "Filter visibility Left 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-6": {
                        "blurb": "Filter visibility Left 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-7": {
                        "blurb": "Filter visibility Left 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-8": {
                        "blurb": "Filter visibility Left 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-9": {
                        "blurb": "Filter visibility Left 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-0": {
                        "blurb": "Filter visibility Right 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-1": {
                        "blurb": "Filter visibility Right 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-10": {
                        "blurb": "Filter visibility Right 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-11": {
                        "blurb": "Filter visibility Right 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-12": {
                        "blurb": "Filter visibility Right 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-13": {
                        "blurb": "Filter visibility Right 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-14": {
                        "blurb": "Filter visibility Right 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-15": {
                        "blurb": "Filter visibility Right 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-2": {
                        "blurb": "Filter visibility Right 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-3": {
                        "blurb": "Filter visibility Right 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-4": {
                        "blurb": "Filter visibility Right 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-5": {
                        "blurb": "Filter visibility Right 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-6": {
                        "blurb": "Filter visibility Right 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-7": {
                        "blurb": "Filter visibility Right 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-8": {
                        "blurb": "Filter visibility Right 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-9": {
                        "blurb": "Filter visibility Right 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-0": {
                        "blurb": "Gain Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-1": {
                        "blurb": "Gain Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-10": {
                        "blurb": "Gain Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-11": {
                        "blurb": "Gain Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-12": {
                        "blurb": "Gain Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-13": {
                        "blurb": "Gain Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-14": {
                        "blurb": "Gain Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-15": {
                        "blurb": "Gain Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-2": {
                        "blurb": "Gain Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-3": {
                        "blurb": "Gain Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-4": {
                        "blurb": "Gain Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-5": {
                        "blurb": "Gain Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-6": {
                        "blurb": "Gain Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-7": {
                        "blurb": "Gain Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-8": {
                        "blurb": "Gain Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-9": {
                        "blurb": "Gain Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-0": {
                        "blurb": "Gain Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-1": {
                        "blurb": "Gain Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-10": {
                        "blurb": "Gain Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-11": {
                        "blurb": "Gain Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-12": {
                        "blurb": "Gain Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-13": {
                        "blurb": "Gain Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-14": {
                        "blurb": "Gain Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-15": {
                        "blurb": "Gain Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-2": {
                        "blurb": "Gain Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-3": {
                        "blurb": "Gain Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-4": {
                        "blurb": "Gain Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-5": {
                        "blurb": "Gain Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-6": {
                        "blurb": "Gain Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-7": {
                        "blurb": "Gain Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-8": {
                        "blurb": "Gain Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-9": {
                        "blurb": "Gain Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-0": {
                        "blurb": "Hue Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-1": {
                        "blurb": "Hue Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-10": {
                        "blurb": "Hue Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-11": {
                        "blurb": "Hue Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-12": {
                        "blurb": "Hue Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-13": {
                        "blurb": "Hue Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-14": {
                        "blurb": "Hue Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-15": {
                        "blurb": "Hue Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-2": {
                        "blurb": "Hue Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-3": {
                        "blurb": "Hue Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-4": {
                        "blurb": "Hue Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-5": {
                        "blurb": "Hue Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-6": {
                        "blurb": "Hue Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-7": {
                        "blurb": "Hue Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-8": {
                        "blurb": "Hue Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-9": {
                        "blurb": "Hue Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-0": {
                        "blurb": "Hue Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-1": {
                        "blurb": "Hue Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-10": {
                        "blurb": "Hue Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-11": {
                        "blurb": "Hue Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-12": {
                        "blurb": "Hue Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-13": {
                        "blurb": "Hue Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-14": {
                        "blurb": "Hue Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-15": {
                        "blurb": "Hue Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-2": {
                        "blurb": "Hue Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-3": {
                        "blurb": "Hue Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-4": {
                        "blurb": "Hue Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-5": {
                        "blurb": "Hue Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-6": {
                        "blurb": "Hue Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-7": {
                        "blurb": "Hue Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-8": {
                        "blurb": "Hue Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-9": {
                        "blurb": "Hue Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ql-0": {
                        "blurb": "Quality factor Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-1": {
                        "blurb": "Quality factor Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-10": {
                        "blurb": "Quality factor Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-11": {
                        "blurb": "Quality factor Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-12": {
                        "blurb": "Quality factor Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-13": {
                        "blurb": "Quality factor Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-14": {
                        "blurb": "Quality factor Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-15": {
                        "blurb": "Quality factor Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-2": {
                        "blurb": "Quality factor Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-3": {
                        "blurb": "Quality factor Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-4": {
                        "blurb": "Quality factor Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-5": {
                        "blurb": "Quality factor Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-6": {
                        "blurb": "Quality factor Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-7": {
                        "blurb": "Quality factor Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-8": {
                        "blurb": "Quality factor Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-9": {
                        "blurb": "Quality factor Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-0": {
                        "blurb": "Quality factor Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-1": {
                        "blurb": "Quality factor Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-10": {
                        "blurb": "Quality factor Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-11": {
                        "blurb": "Quality factor Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-12": {
                        "blurb": "Quality factor Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-13": {
                        "blurb": "Quality factor Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-14": {
                        "blurb": "Quality factor Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-15": {
                        "blurb": "Quality factor Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-2": {
                        "blurb": "Quality factor Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-3": {
                        "blurb": "Quality factor Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-4": {
                        "blurb": "Quality factor Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-5": {
                        "blurb": "Quality factor Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-6": {
                        "blurb": "Quality factor Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-7": {
                        "blurb": "Quality factor Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-8": {
                        "blurb": "Quality factor Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-9": {
                        "blurb": "Quality factor Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sl-0": {
                        "blurb": "Filter slope Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-0",
                        "writable": true
                    },
                    "sl-1": {
                        "blurb": "Filter slope Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-1",
                        "writable": true
                    },
                    "sl-10": {
                        "blurb": "Filter slope Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-10",
                        "writable": true
                    },
                    "sl-11": {
                        "blurb": "Filter slope Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-11",
                        "writable": true
                    },
                    "sl-12": {
                        "blurb": "Filter slope Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-12",
                        "writable": true
                    },
                    "sl-13": {
                        "blurb": "Filter slope Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-13",
                        "writable": true
                    },
                    "sl-14": {
                        "blurb": "Filter slope Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-14",
                        "writable": true
                    },
                    "sl-15": {
                        "blurb": "Filter slope Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-15",
                        "writable": true
                    },
                    "sl-2": {
                        "blurb": "Filter slope Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-2",
                        "writable": true
                    },
                    "sl-3": {
                        "blurb": "Filter slope Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-3",
                        "writable": true
                    },
                    "sl-4": {
                        "blurb": "Filter slope Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-4",
                        "writable": true
                    },
                    "sl-5": {
                        "blurb": "Filter slope Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-5",
                        "writable": true
                    },
                    "sl-6": {
                        "blurb": "Filter slope Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-6",
                        "writable": true
                    },
                    "sl-7": {
                        "blurb": "Filter slope Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-7",
                        "writable": true
                    },
                    "sl-8": {
                        "blurb": "Filter slope Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-8",
                        "writable": true
                    },
                    "sl-9": {
                        "blurb": "Filter slope Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-9",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sr-0": {
                        "blurb": "Filter slope Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-0",
                        "writable": true
                    },
                    "sr-1": {
                        "blurb": "Filter slope Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-1",
                        "writable": true
                    },
                    "sr-10": {
                        "blurb": "Filter slope Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-10",
                        "writable": true
                    },
                    "sr-11": {
                        "blurb": "Filter slope Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-11",
                        "writable": true
                    },
                    "sr-12": {
                        "blurb": "Filter slope Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-12",
                        "writable": true
                    },
                    "sr-13": {
                        "blurb": "Filter slope Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-13",
                        "writable": true
                    },
                    "sr-14": {
                        "blurb": "Filter slope Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-14",
                        "writable": true
                    },
                    "sr-15": {
                        "blurb": "Filter slope Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-15",
                        "writable": true
                    },
                    "sr-2": {
                        "blurb": "Filter slope Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-2",
                        "writable": true
                    },
                    "sr-3": {
                        "blurb": "Filter slope Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-3",
                        "writable": true
                    },
                    "sr-4": {
                        "blurb": "Filter slope Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-4",
                        "writable": true
                    },
                    "sr-5": {
                        "blurb": "Filter slope Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-5",
                        "writable": true
                    },
                    "sr-6": {
                        "blurb": "Filter slope Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-6",
                        "writable": true
                    },
                    "sr-7": {
                        "blurb": "Filter slope Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-7",
                        "writable": true
                    },
                    "sr-8": {
                        "blurb": "Filter slope Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-8",
                        "writable": true
                    },
                    "sr-9": {
                        "blurb": "Filter slope Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-9",
                        "writable": true
                    },
                    "xml-0": {
                        "blurb": "Filter mute Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-1": {
                        "blurb": "Filter mute Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-10": {
                        "blurb": "Filter mute Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-11": {
                        "blurb": "Filter mute Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-12": {
                        "blurb": "Filter mute Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-13": {
                        "blurb": "Filter mute Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-14": {
                        "blurb": "Filter mute Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-15": {
                        "blurb": "Filter mute Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-2": {
                        "blurb": "Filter mute Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-3": {
                        "blurb": "Filter mute Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-4": {
                        "blurb": "Filter mute Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-5": {
                        "blurb": "Filter mute Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-6": {
                        "blurb": "Filter mute Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-7": {
                        "blurb": "Filter mute Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-8": {
                        "blurb": "Filter mute Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-9": {
                        "blurb": "Filter mute Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-0": {
                        "blurb": "Filter mute Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-1": {
                        "blurb": "Filter mute Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-10": {
                        "blurb": "Filter mute Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-11": {
                        "blurb": "Filter mute Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-12": {
                        "blurb": "Filter mute Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-13": {
                        "blurb": "Filter mute Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-14": {
                        "blurb": "Filter mute Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-15": {
                        "blurb": "Filter mute Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-2": {
                        "blurb": "Filter mute Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-3": {
                        "blurb": "Filter mute Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-4": {
                        "blurb": "Filter mute Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-5": {
                        "blurb": "Filter mute Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-6": {
                        "blurb": "Filter mute Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-7": {
                        "blurb": "Filter mute Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-8": {
                        "blurb": "Filter mute Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-9": {
                        "blurb": "Filter mute Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-0": {
                        "blurb": "Filter solo Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-1": {
                        "blurb": "Filter solo Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-10": {
                        "blurb": "Filter solo Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-11": {
                        "blurb": "Filter solo Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-12": {
                        "blurb": "Filter solo Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-13": {
                        "blurb": "Filter solo Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-14": {
                        "blurb": "Filter solo Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-15": {
                        "blurb": "Filter solo Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-2": {
                        "blurb": "Filter solo Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-3": {
                        "blurb": "Filter solo Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-4": {
                        "blurb": "Filter solo Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-5": {
                        "blurb": "Filter solo Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-6": {
                        "blurb": "Filter solo Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-7": {
                        "blurb": "Filter solo Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-8": {
                        "blurb": "Filter solo Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-9": {
                        "blurb": "Filter solo Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-0": {
                        "blurb": "Filter solo Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-1": {
                        "blurb": "Filter solo Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-10": {
                        "blurb": "Filter solo Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-11": {
                        "blurb": "Filter solo Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-12": {
                        "blurb": "Filter solo Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-13": {
                        "blurb": "Filter solo Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-14": {
                        "blurb": "Filter solo Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-15": {
                        "blurb": "Filter solo Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-2": {
                        "blurb": "Filter solo Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-3": {
                        "blurb": "Filter solo Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-4": {
                        "blurb": "Filter solo Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-5": {
                        "blurb": "Filter solo Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-6": {
                        "blurb": "Filter solo Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-7": {
                        "blurb": "Filter solo Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-8": {
                        "blurb": "Filter solo Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-9": {
                        "blurb": "Filter solo Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mono": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x16 Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x16-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x16 Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "f-0": {
                        "blurb": "Frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-1": {
                        "blurb": "Frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-10": {
                        "blurb": "Frequency 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-11": {
                        "blurb": "Frequency 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-12": {
                        "blurb": "Frequency 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-13": {
                        "blurb": "Frequency 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-14": {
                        "blurb": "Frequency 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-15": {
                        "blurb": "Frequency 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-2": {
                        "blurb": "Frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-3": {
                        "blurb": "Frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-4": {
                        "blurb": "Frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-5": {
                        "blurb": "Frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-6": {
                        "blurb": "Frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-7": {
                        "blurb": "Frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-8": {
                        "blurb": "Frequency 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-9": {
                        "blurb": "Frequency 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofft",
                        "writable": true
                    },
                    "fm-0": {
                        "blurb": "Filter mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-0",
                        "writable": true
                    },
                    "fm-1": {
                        "blurb": "Filter mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-1",
                        "writable": true
                    },
                    "fm-10": {
                        "blurb": "Filter mode 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-10",
                        "writable": true
                    },
                    "fm-11": {
                        "blurb": "Filter mode 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-11",
                        "writable": true
                    },
                    "fm-12": {
                        "blurb": "Filter mode 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-12",
                        "writable": true
                    },
                    "fm-13": {
                        "blurb": "Filter mode 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-13",
                        "writable": true
                    },
                    "fm-14": {
                        "blurb": "Filter mode 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-14",
                        "writable": true
                    },
                    "fm-15": {
                        "blurb": "Filter mode 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-15",
                        "writable": true
                    },
                    "fm-2": {
                        "blurb": "Filter mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-2",
                        "writable": true
                    },
                    "fm-3": {
                        "blurb": "Filter mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-3",
                        "writable": true
                    },
                    "fm-4": {
                        "blurb": "Filter mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-4",
                        "writable": true
                    },
                    "fm-5": {
                        "blurb": "Filter mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-5",
                        "writable": true
                    },
                    "fm-6": {
                        "blurb": "Filter mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-6",
                        "writable": true
                    },
                    "fm-7": {
                        "blurb": "Filter mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-7",
                        "writable": true
                    },
                    "fm-8": {
                        "blurb": "Filter mode 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-8",
                        "writable": true
                    },
                    "fm-9": {
                        "blurb": "Filter mode 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-9",
                        "writable": true
                    },
                    "frqs": {
                        "blurb": "Frequency shift",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofsel",
                        "writable": true
                    },
                    "ft-0": {
                        "blurb": "Filter type 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-0",
                        "writable": true
                    },
                    "ft-1": {
                        "blurb": "Filter type 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-1",
                        "writable": true
                    },
                    "ft-10": {
                        "blurb": "Filter type 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-10",
                        "writable": true
                    },
                    "ft-11": {
                        "blurb": "Filter type 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-11",
                        "writable": true
                    },
                    "ft-12": {
                        "blurb": "Filter type 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-12",
                        "writable": true
                    },
                    "ft-13": {
                        "blurb": "Filter type 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-13",
                        "writable": true
                    },
                    "ft-14": {
                        "blurb": "Filter type 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-14",
                        "writable": true
                    },
                    "ft-15": {
                        "blurb": "Filter type 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-15",
                        "writable": true
                    },
                    "ft-2": {
                        "blurb": "Filter type 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-2",
                        "writable": true
                    },
                    "ft-3": {
                        "blurb": "Filter type 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-3",
                        "writable": true
                    },
                    "ft-4": {
                        "blurb": "Filter type 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-4",
                        "writable": true
                    },
                    "ft-5": {
                        "blurb": "Filter type 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-5",
                        "writable": true
                    },
                    "ft-6": {
                        "blurb": "Filter type 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-6",
                        "writable": true
                    },
                    "ft-7": {
                        "blurb": "Filter type 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-7",
                        "writable": true
                    },
                    "ft-8": {
                        "blurb": "Filter type 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-8",
                        "writable": true
                    },
                    "ft-9": {
                        "blurb": "Filter type 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-9",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Gain 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Gain 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Gain 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Gain 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1": {
                        "blurb": "Hue 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-10": {
                        "blurb": "Hue 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-11": {
                        "blurb": "Hue 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-12": {
                        "blurb": "Hue 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-13": {
                        "blurb": "Hue 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-14": {
                        "blurb": "Hue 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-15": {
                        "blurb": "Hue 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2": {
                        "blurb": "Hue 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3": {
                        "blurb": "Hue 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4": {
                        "blurb": "Hue 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5": {
                        "blurb": "Hue 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6": {
                        "blurb": "Hue 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7": {
                        "blurb": "Hue 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-8": {
                        "blurb": "Hue 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-9": {
                        "blurb": "Hue 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "im": {
                        "blurb": "Input signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "q-0": {
                        "blurb": "Quality factor 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-1": {
                        "blurb": "Quality factor 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-10": {
                        "blurb": "Quality factor 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-11": {
                        "blurb": "Quality factor 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-12": {
                        "blurb": "Quality factor 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-13": {
                        "blurb": "Quality factor 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-14": {
                        "blurb": "Quality factor 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-15": {
                        "blurb": "Quality factor 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-2": {
                        "blurb": "Quality factor 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-3": {
                        "blurb": "Quality factor 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-4": {
                        "blurb": "Quality factor 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-5": {
                        "blurb": "Quality factor 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-6": {
                        "blurb": "Quality factor 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-7": {
                        "blurb": "Quality factor 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-8": {
                        "blurb": "Quality factor 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-9": {
                        "blurb": "Quality factor 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "s-0": {
                        "blurb": "Filter slope 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-0",
                        "writable": true
                    },
                    "s-1": {
                        "blurb": "Filter slope 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-1",
                        "writable": true
                    },
                    "s-10": {
                        "blurb": "Filter slope 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-10",
                        "writable": true
                    },
                    "s-11": {
                        "blurb": "Filter slope 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-11",
                        "writable": true
                    },
                    "s-12": {
                        "blurb": "Filter slope 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-12",
                        "writable": true
                    },
                    "s-13": {
                        "blurb": "Filter slope 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-13",
                        "writable": true
                    },
                    "s-14": {
                        "blurb": "Filter slope 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-14",
                        "writable": true
                    },
                    "s-15": {
                        "blurb": "Filter slope 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-15",
                        "writable": true
                    },
                    "s-2": {
                        "blurb": "Filter slope 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-2",
                        "writable": true
                    },
                    "s-3": {
                        "blurb": "Filter slope 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-3",
                        "writable": true
                    },
                    "s-4": {
                        "blurb": "Filter slope 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-4",
                        "writable": true
                    },
                    "s-5": {
                        "blurb": "Filter slope 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-5",
                        "writable": true
                    },
                    "s-6": {
                        "blurb": "Filter slope 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-6",
                        "writable": true
                    },
                    "s-7": {
                        "blurb": "Filter slope 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-7",
                        "writable": true
                    },
                    "s-8": {
                        "blurb": "Filter slope 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-8",
                        "writable": true
                    },
                    "s-9": {
                        "blurb": "Filter slope 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-9",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sm": {
                        "blurb": "Output signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xm-0": {
                        "blurb": "Filter mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Filter mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Filter mute 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Filter mute 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Filter mute 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Filter mute 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Filter mute 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Filter mute 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Filter mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Filter mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Filter mute 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Filter mute 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Filter mute 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Filter mute 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Filter mute 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Filter mute 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Filter solo 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Filter solo 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Filter solo 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Filter solo 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Filter solo 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Filter solo 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Filter solo 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Filter solo 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Filter solo 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Filter solo 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Filter solo 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Filter solo 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Filter solo 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Filter solo 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Filter solo 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Filter solo 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-ms": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x16 MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x16-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x16 MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfft",
                        "writable": true
                    },
                    "fftv-m": {
                        "blurb": "FFT visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-s": {
                        "blurb": "FFT visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fm-0": {
                        "blurb": "Frequency Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-1": {
                        "blurb": "Frequency Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-10": {
                        "blurb": "Frequency Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-11": {
                        "blurb": "Frequency Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-12": {
                        "blurb": "Frequency Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-13": {
                        "blurb": "Frequency Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-14": {
                        "blurb": "Frequency Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-15": {
                        "blurb": "Frequency Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-2": {
                        "blurb": "Frequency Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-3": {
                        "blurb": "Frequency Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-4": {
                        "blurb": "Frequency Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-5": {
                        "blurb": "Frequency Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-6": {
                        "blurb": "Frequency Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-7": {
                        "blurb": "Frequency Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-8": {
                        "blurb": "Frequency Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-9": {
                        "blurb": "Frequency Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fmm-0": {
                        "blurb": "Filter mode Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-0",
                        "writable": true
                    },
                    "fmm-1": {
                        "blurb": "Filter mode Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-1",
                        "writable": true
                    },
                    "fmm-10": {
                        "blurb": "Filter mode Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-10",
                        "writable": true
                    },
                    "fmm-11": {
                        "blurb": "Filter mode Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-11",
                        "writable": true
                    },
                    "fmm-12": {
                        "blurb": "Filter mode Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-12",
                        "writable": true
                    },
                    "fmm-13": {
                        "blurb": "Filter mode Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-13",
                        "writable": true
                    },
                    "fmm-14": {
                        "blurb": "Filter mode Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-14",
                        "writable": true
                    },
                    "fmm-15": {
                        "blurb": "Filter mode Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-15",
                        "writable": true
                    },
                    "fmm-2": {
                        "blurb": "Filter mode Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-2",
                        "writable": true
                    },
                    "fmm-3": {
                        "blurb": "Filter mode Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-3",
                        "writable": true
                    },
                    "fmm-4": {
                        "blurb": "Filter mode Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-4",
                        "writable": true
                    },
                    "fmm-5": {
                        "blurb": "Filter mode Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-5",
                        "writable": true
                    },
                    "fmm-6": {
                        "blurb": "Filter mode Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-6",
                        "writable": true
                    },
                    "fmm-7": {
                        "blurb": "Filter mode Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-7",
                        "writable": true
                    },
                    "fmm-8": {
                        "blurb": "Filter mode Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-8",
                        "writable": true
                    },
                    "fmm-9": {
                        "blurb": "Filter mode Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-9",
                        "writable": true
                    },
                    "fms-0": {
                        "blurb": "Filter mode Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-0",
                        "writable": true
                    },
                    "fms-1": {
                        "blurb": "Filter mode Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-1",
                        "writable": true
                    },
                    "fms-10": {
                        "blurb": "Filter mode Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-10",
                        "writable": true
                    },
                    "fms-11": {
                        "blurb": "Filter mode Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-11",
                        "writable": true
                    },
                    "fms-12": {
                        "blurb": "Filter mode Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-12",
                        "writable": true
                    },
                    "fms-13": {
                        "blurb": "Filter mode Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-13",
                        "writable": true
                    },
                    "fms-14": {
                        "blurb": "Filter mode Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-14",
                        "writable": true
                    },
                    "fms-15": {
                        "blurb": "Filter mode Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-15",
                        "writable": true
                    },
                    "fms-2": {
                        "blurb": "Filter mode Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-2",
                        "writable": true
                    },
                    "fms-3": {
                        "blurb": "Filter mode Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-3",
                        "writable": true
                    },
                    "fms-4": {
                        "blurb": "Filter mode Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-4",
                        "writable": true
                    },
                    "fms-5": {
                        "blurb": "Filter mode Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-5",
                        "writable": true
                    },
                    "fms-6": {
                        "blurb": "Filter mode Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-6",
                        "writable": true
                    },
                    "fms-7": {
                        "blurb": "Filter mode Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-7",
                        "writable": true
                    },
                    "fms-8": {
                        "blurb": "Filter mode Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-8",
                        "writable": true
                    },
                    "fms-9": {
                        "blurb": "Filter mode Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-9",
                        "writable": true
                    },
                    "frqs-m": {
                        "blurb": "Frequency shift Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frqs-s": {
                        "blurb": "Frequency shift Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-0": {
                        "blurb": "Frequency Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-1": {
                        "blurb": "Frequency Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-10": {
                        "blurb": "Frequency Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-11": {
                        "blurb": "Frequency Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-12": {
                        "blurb": "Frequency Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-13": {
                        "blurb": "Frequency Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-14": {
                        "blurb": "Frequency Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-15": {
                        "blurb": "Frequency Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-2": {
                        "blurb": "Frequency Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-3": {
                        "blurb": "Frequency Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-4": {
                        "blurb": "Frequency Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-5": {
                        "blurb": "Frequency Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-6": {
                        "blurb": "Frequency Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-7": {
                        "blurb": "Frequency Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-8": {
                        "blurb": "Frequency Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-9": {
                        "blurb": "Frequency Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters Middle 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfsel",
                        "writable": true
                    },
                    "ftm-0": {
                        "blurb": "Filter type Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-0",
                        "writable": true
                    },
                    "ftm-1": {
                        "blurb": "Filter type Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-1",
                        "writable": true
                    },
                    "ftm-10": {
                        "blurb": "Filter type Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-10",
                        "writable": true
                    },
                    "ftm-11": {
                        "blurb": "Filter type Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-11",
                        "writable": true
                    },
                    "ftm-12": {
                        "blurb": "Filter type Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-12",
                        "writable": true
                    },
                    "ftm-13": {
                        "blurb": "Filter type Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-13",
                        "writable": true
                    },
                    "ftm-14": {
                        "blurb": "Filter type Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-14",
                        "writable": true
                    },
                    "ftm-15": {
                        "blurb": "Filter type Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-15",
                        "writable": true
                    },
                    "ftm-2": {
                        "blurb": "Filter type Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-2",
                        "writable": true
                    },
                    "ftm-3": {
                        "blurb": "Filter type Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-3",
                        "writable": true
                    },
                    "ftm-4": {
                        "blurb": "Filter type Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-4",
                        "writable": true
                    },
                    "ftm-5": {
                        "blurb": "Filter type Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-5",
                        "writable": true
                    },
                    "ftm-6": {
                        "blurb": "Filter type Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-6",
                        "writable": true
                    },
                    "ftm-7": {
                        "blurb": "Filter type Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-7",
                        "writable": true
                    },
                    "ftm-8": {
                        "blurb": "Filter type Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-8",
                        "writable": true
                    },
                    "ftm-9": {
                        "blurb": "Filter type Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-9",
                        "writable": true
                    },
                    "fts-0": {
                        "blurb": "Filter type Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-0",
                        "writable": true
                    },
                    "fts-1": {
                        "blurb": "Filter type Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-1",
                        "writable": true
                    },
                    "fts-10": {
                        "blurb": "Filter type Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-10",
                        "writable": true
                    },
                    "fts-11": {
                        "blurb": "Filter type Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-11",
                        "writable": true
                    },
                    "fts-12": {
                        "blurb": "Filter type Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-12",
                        "writable": true
                    },
                    "fts-13": {
                        "blurb": "Filter type Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-13",
                        "writable": true
                    },
                    "fts-14": {
                        "blurb": "Filter type Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-14",
                        "writable": true
                    },
                    "fts-15": {
                        "blurb": "Filter type Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-15",
                        "writable": true
                    },
                    "fts-2": {
                        "blurb": "Filter type Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-2",
                        "writable": true
                    },
                    "fts-3": {
                        "blurb": "Filter type Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-3",
                        "writable": true
                    },
                    "fts-4": {
                        "blurb": "Filter type Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-4",
                        "writable": true
                    },
                    "fts-5": {
                        "blurb": "Filter type Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-5",
                        "writable": true
                    },
                    "fts-6": {
                        "blurb": "Filter type Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-6",
                        "writable": true
                    },
                    "fts-7": {
                        "blurb": "Filter type Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-7",
                        "writable": true
                    },
                    "fts-8": {
                        "blurb": "Filter type Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-8",
                        "writable": true
                    },
                    "fts-9": {
                        "blurb": "Filter type Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-9",
                        "writable": true
                    },
                    "fvm-0": {
                        "blurb": "Filter visibility Mid 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-1": {
                        "blurb": "Filter visibility Mid 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-10": {
                        "blurb": "Filter visibility Mid 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-11": {
                        "blurb": "Filter visibility Mid 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-12": {
                        "blurb": "Filter visibility Mid 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-13": {
                        "blurb": "Filter visibility Mid 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-14": {
                        "blurb": "Filter visibility Mid 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-15": {
                        "blurb": "Filter visibility Mid 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-2": {
                        "blurb": "Filter visibility Mid 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-3": {
                        "blurb": "Filter visibility Mid 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-4": {
                        "blurb": "Filter visibility Mid 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-5": {
                        "blurb": "Filter visibility Mid 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-6": {
                        "blurb": "Filter visibility Mid 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-7": {
                        "blurb": "Filter visibility Mid 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-8": {
                        "blurb": "Filter visibility Mid 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-9": {
                        "blurb": "Filter visibility Mid 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-0": {
                        "blurb": "Filter visibility Side 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-1": {
                        "blurb": "Filter visibility Side 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-10": {
                        "blurb": "Filter visibility Side 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-11": {
                        "blurb": "Filter visibility Side 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-12": {
                        "blurb": "Filter visibility Side 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-13": {
                        "blurb": "Filter visibility Side 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-14": {
                        "blurb": "Filter visibility Side 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-15": {
                        "blurb": "Filter visibility Side 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-2": {
                        "blurb": "Filter visibility Side 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-3": {
                        "blurb": "Filter visibility Side 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-4": {
                        "blurb": "Filter visibility Side 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-5": {
                        "blurb": "Filter visibility Side 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-6": {
                        "blurb": "Filter visibility Side 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-7": {
                        "blurb": "Filter visibility Side 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-8": {
                        "blurb": "Filter visibility Side 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-9": {
                        "blurb": "Filter visibility Side 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-m": {
                        "blurb": "Mid gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-s": {
                        "blurb": "Side gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-0": {
                        "blurb": "Gain Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-1": {
                        "blurb": "Gain Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-10": {
                        "blurb": "Gain Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-11": {
                        "blurb": "Gain Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-12": {
                        "blurb": "Gain Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-13": {
                        "blurb": "Gain Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-14": {
                        "blurb": "Gain Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-15": {
                        "blurb": "Gain Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-2": {
                        "blurb": "Gain Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-3": {
                        "blurb": "Gain Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-4": {
                        "blurb": "Gain Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-5": {
                        "blurb": "Gain Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-6": {
                        "blurb": "Gain Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-7": {
                        "blurb": "Gain Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-8": {
                        "blurb": "Gain Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-9": {
                        "blurb": "Gain Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-0": {
                        "blurb": "Gain Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-1": {
                        "blurb": "Gain Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-10": {
                        "blurb": "Gain Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-11": {
                        "blurb": "Gain Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-12": {
                        "blurb": "Gain Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-13": {
                        "blurb": "Gain Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-14": {
                        "blurb": "Gain Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-15": {
                        "blurb": "Gain Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-2": {
                        "blurb": "Gain Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-3": {
                        "blurb": "Gain Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-4": {
                        "blurb": "Gain Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-5": {
                        "blurb": "Gain Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-6": {
                        "blurb": "Gain Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-7": {
                        "blurb": "Gain Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-8": {
                        "blurb": "Gain Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-9": {
                        "blurb": "Gain Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-0": {
                        "blurb": "Hue Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-1": {
                        "blurb": "Hue Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-10": {
                        "blurb": "Hue Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-11": {
                        "blurb": "Hue Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-12": {
                        "blurb": "Hue Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-13": {
                        "blurb": "Hue Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-14": {
                        "blurb": "Hue Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-15": {
                        "blurb": "Hue Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-2": {
                        "blurb": "Hue Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-3": {
                        "blurb": "Hue Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-4": {
                        "blurb": "Hue Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-5": {
                        "blurb": "Hue Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-6": {
                        "blurb": "Hue Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-7": {
                        "blurb": "Hue Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-8": {
                        "blurb": "Hue Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-9": {
                        "blurb": "Hue Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-0": {
                        "blurb": "Hue Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-1": {
                        "blurb": "Hue Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-10": {
                        "blurb": "Hue Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-11": {
                        "blurb": "Hue Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-12": {
                        "blurb": "Hue Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-13": {
                        "blurb": "Hue Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-14": {
                        "blurb": "Hue Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-15": {
                        "blurb": "Hue Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-2": {
                        "blurb": "Hue Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-3": {
                        "blurb": "Hue Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-4": {
                        "blurb": "Hue Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-5": {
                        "blurb": "Hue Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-6": {
                        "blurb": "Hue Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-7": {
                        "blurb": "Hue Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-8": {
                        "blurb": "Hue Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-9": {
                        "blurb": "Hue Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "lstn": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "qm-0": {
                        "blurb": "Quality factor Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-1": {
                        "blurb": "Quality factor Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-10": {
                        "blurb": "Quality factor Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-11": {
                        "blurb": "Quality factor Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-12": {
                        "blurb": "Quality factor Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-13": {
                        "blurb": "Quality factor Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-14": {
                        "blurb": "Quality factor Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-15": {
                        "blurb": "Quality factor Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-2": {
                        "blurb": "Quality factor Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-3": {
                        "blurb": "Quality factor Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-4": {
                        "blurb": "Quality factor Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-5": {
                        "blurb": "Quality factor Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-6": {
                        "blurb": "Quality factor Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-7": {
                        "blurb": "Quality factor Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-8": {
                        "blurb": "Quality factor Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-9": {
                        "blurb": "Quality factor Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-0": {
                        "blurb": "Quality factor Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-1": {
                        "blurb": "Quality factor Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-10": {
                        "blurb": "Quality factor Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-11": {
                        "blurb": "Quality factor Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-12": {
                        "blurb": "Quality factor Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-13": {
                        "blurb": "Quality factor Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-14": {
                        "blurb": "Quality factor Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-15": {
                        "blurb": "Quality factor Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-2": {
                        "blurb": "Quality factor Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-3": {
                        "blurb": "Quality factor Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-4": {
                        "blurb": "Quality factor Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-5": {
                        "blurb": "Quality factor Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-6": {
                        "blurb": "Quality factor Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-7": {
                        "blurb": "Quality factor Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-8": {
                        "blurb": "Quality factor Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-9": {
                        "blurb": "Quality factor Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sm-0": {
                        "blurb": "Filter slope Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-0",
                        "writable": true
                    },
                    "sm-1": {
                        "blurb": "Filter slope Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-1",
                        "writable": true
                    },
                    "sm-10": {
                        "blurb": "Filter slope Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-10",
                        "writable": true
                    },
                    "sm-11": {
                        "blurb": "Filter slope Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-11",
                        "writable": true
                    },
                    "sm-12": {
                        "blurb": "Filter slope Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-12",
                        "writable": true
                    },
                    "sm-13": {
                        "blurb": "Filter slope Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-13",
                        "writable": true
                    },
                    "sm-14": {
                        "blurb": "Filter slope Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-14",
                        "writable": true
                    },
                    "sm-15": {
                        "blurb": "Filter slope Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-15",
                        "writable": true
                    },
                    "sm-2": {
                        "blurb": "Filter slope Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-2",
                        "writable": true
                    },
                    "sm-3": {
                        "blurb": "Filter slope Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-3",
                        "writable": true
                    },
                    "sm-4": {
                        "blurb": "Filter slope Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-4",
                        "writable": true
                    },
                    "sm-5": {
                        "blurb": "Filter slope Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-5",
                        "writable": true
                    },
                    "sm-6": {
                        "blurb": "Filter slope Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-6",
                        "writable": true
                    },
                    "sm-7": {
                        "blurb": "Filter slope Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-7",
                        "writable": true
                    },
                    "sm-8": {
                        "blurb": "Filter slope Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-8",
                        "writable": true
                    },
                    "sm-9": {
                        "blurb": "Filter slope Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-9",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ss-0": {
                        "blurb": "Filter slope Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-0",
                        "writable": true
                    },
                    "ss-1": {
                        "blurb": "Filter slope Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-1",
                        "writable": true
                    },
                    "ss-10": {
                        "blurb": "Filter slope Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-10",
                        "writable": true
                    },
                    "ss-11": {
                        "blurb": "Filter slope Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-11",
                        "writable": true
                    },
                    "ss-12": {
                        "blurb": "Filter slope Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-12",
                        "writable": true
                    },
                    "ss-13": {
                        "blurb": "Filter slope Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-13",
                        "writable": true
                    },
                    "ss-14": {
                        "blurb": "Filter slope Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-14",
                        "writable": true
                    },
                    "ss-15": {
                        "blurb": "Filter slope Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-15",
                        "writable": true
                    },
                    "ss-2": {
                        "blurb": "Filter slope Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-2",
                        "writable": true
                    },
                    "ss-3": {
                        "blurb": "Filter slope Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-3",
                        "writable": true
                    },
                    "ss-4": {
                        "blurb": "Filter slope Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-4",
                        "writable": true
                    },
                    "ss-5": {
                        "blurb": "Filter slope Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-5",
                        "writable": true
                    },
                    "ss-6": {
                        "blurb": "Filter slope Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-6",
                        "writable": true
                    },
                    "ss-7": {
                        "blurb": "Filter slope Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-7",
                        "writable": true
                    },
                    "ss-8": {
                        "blurb": "Filter slope Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-8",
                        "writable": true
                    },
                    "ss-9": {
                        "blurb": "Filter slope Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-9",
                        "writable": true
                    },
                    "xmm-0": {
                        "blurb": "Filter mute Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-1": {
                        "blurb": "Filter mute Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-10": {
                        "blurb": "Filter mute Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-11": {
                        "blurb": "Filter mute Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-12": {
                        "blurb": "Filter mute Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-13": {
                        "blurb": "Filter mute Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-14": {
                        "blurb": "Filter mute Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-15": {
                        "blurb": "Filter mute Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-2": {
                        "blurb": "Filter mute Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-3": {
                        "blurb": "Filter mute Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-4": {
                        "blurb": "Filter mute Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-5": {
                        "blurb": "Filter mute Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-6": {
                        "blurb": "Filter mute Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-7": {
                        "blurb": "Filter mute Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-8": {
                        "blurb": "Filter mute Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-9": {
                        "blurb": "Filter mute Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-0": {
                        "blurb": "Filter mute Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-1": {
                        "blurb": "Filter mute Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-10": {
                        "blurb": "Filter mute Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-11": {
                        "blurb": "Filter mute Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-12": {
                        "blurb": "Filter mute Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-13": {
                        "blurb": "Filter mute Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-14": {
                        "blurb": "Filter mute Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-15": {
                        "blurb": "Filter mute Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-2": {
                        "blurb": "Filter mute Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-3": {
                        "blurb": "Filter mute Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-4": {
                        "blurb": "Filter mute Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-5": {
                        "blurb": "Filter mute Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-6": {
                        "blurb": "Filter mute Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-7": {
                        "blurb": "Filter mute Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-8": {
                        "blurb": "Filter mute Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-9": {
                        "blurb": "Filter mute Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-0": {
                        "blurb": "Filter solo Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-1": {
                        "blurb": "Filter solo Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-10": {
                        "blurb": "Filter solo Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-11": {
                        "blurb": "Filter solo Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-12": {
                        "blurb": "Filter solo Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-13": {
                        "blurb": "Filter solo Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-14": {
                        "blurb": "Filter solo Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-15": {
                        "blurb": "Filter solo Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-2": {
                        "blurb": "Filter solo Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-3": {
                        "blurb": "Filter solo Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-4": {
                        "blurb": "Filter solo Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-5": {
                        "blurb": "Filter solo Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-6": {
                        "blurb": "Filter solo Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-7": {
                        "blurb": "Filter solo Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-8": {
                        "blurb": "Filter solo Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-9": {
                        "blurb": "Filter solo Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-0": {
                        "blurb": "Filter solo Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-1": {
                        "blurb": "Filter solo Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-10": {
                        "blurb": "Filter solo Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-11": {
                        "blurb": "Filter solo Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-12": {
                        "blurb": "Filter solo Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-13": {
                        "blurb": "Filter solo Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-14": {
                        "blurb": "Filter solo Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-15": {
                        "blurb": "Filter solo Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-2": {
                        "blurb": "Filter solo Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-3": {
                        "blurb": "Filter solo Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-4": {
                        "blurb": "Filter solo Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-5": {
                        "blurb": "Filter solo Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-6": {
                        "blurb": "Filter solo Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-7": {
                        "blurb": "Filter solo Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-8": {
                        "blurb": "Filter solo Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-9": {
                        "blurb": "Filter solo Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereo": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x16 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x16 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "f-0": {
                        "blurb": "Frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-1": {
                        "blurb": "Frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-10": {
                        "blurb": "Frequency 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-11": {
                        "blurb": "Frequency 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-12": {
                        "blurb": "Frequency 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-13": {
                        "blurb": "Frequency 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-14": {
                        "blurb": "Frequency 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-15": {
                        "blurb": "Frequency 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-2": {
                        "blurb": "Frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-3": {
                        "blurb": "Frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-4": {
                        "blurb": "Frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-5": {
                        "blurb": "Frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-6": {
                        "blurb": "Frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-7": {
                        "blurb": "Frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-8": {
                        "blurb": "Frequency 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-9": {
                        "blurb": "Frequency 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fm-0": {
                        "blurb": "Filter mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-0",
                        "writable": true
                    },
                    "fm-1": {
                        "blurb": "Filter mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-1",
                        "writable": true
                    },
                    "fm-10": {
                        "blurb": "Filter mode 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-10",
                        "writable": true
                    },
                    "fm-11": {
                        "blurb": "Filter mode 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-11",
                        "writable": true
                    },
                    "fm-12": {
                        "blurb": "Filter mode 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-12",
                        "writable": true
                    },
                    "fm-13": {
                        "blurb": "Filter mode 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-13",
                        "writable": true
                    },
                    "fm-14": {
                        "blurb": "Filter mode 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-14",
                        "writable": true
                    },
                    "fm-15": {
                        "blurb": "Filter mode 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-15",
                        "writable": true
                    },
                    "fm-2": {
                        "blurb": "Filter mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-2",
                        "writable": true
                    },
                    "fm-3": {
                        "blurb": "Filter mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-3",
                        "writable": true
                    },
                    "fm-4": {
                        "blurb": "Filter mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-4",
                        "writable": true
                    },
                    "fm-5": {
                        "blurb": "Filter mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-5",
                        "writable": true
                    },
                    "fm-6": {
                        "blurb": "Filter mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-6",
                        "writable": true
                    },
                    "fm-7": {
                        "blurb": "Filter mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-7",
                        "writable": true
                    },
                    "fm-8": {
                        "blurb": "Filter mode 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-8",
                        "writable": true
                    },
                    "fm-9": {
                        "blurb": "Filter mode 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-9",
                        "writable": true
                    },
                    "frqs": {
                        "blurb": "Frequency shift",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofsel",
                        "writable": true
                    },
                    "ft-0": {
                        "blurb": "Filter type 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-0",
                        "writable": true
                    },
                    "ft-1": {
                        "blurb": "Filter type 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-1",
                        "writable": true
                    },
                    "ft-10": {
                        "blurb": "Filter type 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-10",
                        "writable": true
                    },
                    "ft-11": {
                        "blurb": "Filter type 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-11",
                        "writable": true
                    },
                    "ft-12": {
                        "blurb": "Filter type 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-12",
                        "writable": true
                    },
                    "ft-13": {
                        "blurb": "Filter type 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-13",
                        "writable": true
                    },
                    "ft-14": {
                        "blurb": "Filter type 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-14",
                        "writable": true
                    },
                    "ft-15": {
                        "blurb": "Filter type 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-15",
                        "writable": true
                    },
                    "ft-2": {
                        "blurb": "Filter type 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-2",
                        "writable": true
                    },
                    "ft-3": {
                        "blurb": "Filter type 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-3",
                        "writable": true
                    },
                    "ft-4": {
                        "blurb": "Filter type 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-4",
                        "writable": true
                    },
                    "ft-5": {
                        "blurb": "Filter type 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-5",
                        "writable": true
                    },
                    "ft-6": {
                        "blurb": "Filter type 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-6",
                        "writable": true
                    },
                    "ft-7": {
                        "blurb": "Filter type 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-7",
                        "writable": true
                    },
                    "ft-8": {
                        "blurb": "Filter type 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-8",
                        "writable": true
                    },
                    "ft-9": {
                        "blurb": "Filter type 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-9",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Gain 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Gain 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Gain 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Gain 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1": {
                        "blurb": "Hue 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-10": {
                        "blurb": "Hue 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-11": {
                        "blurb": "Hue 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-12": {
                        "blurb": "Hue 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-13": {
                        "blurb": "Hue 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-14": {
                        "blurb": "Hue 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-15": {
                        "blurb": "Hue 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2": {
                        "blurb": "Hue 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3": {
                        "blurb": "Hue 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4": {
                        "blurb": "Hue 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5": {
                        "blurb": "Hue 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6": {
                        "blurb": "Hue 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7": {
                        "blurb": "Hue 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-8": {
                        "blurb": "Hue 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-9": {
                        "blurb": "Hue 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "q-0": {
                        "blurb": "Quality factor 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-1": {
                        "blurb": "Quality factor 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-10": {
                        "blurb": "Quality factor 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-11": {
                        "blurb": "Quality factor 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-12": {
                        "blurb": "Quality factor 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-13": {
                        "blurb": "Quality factor 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-14": {
                        "blurb": "Quality factor 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-15": {
                        "blurb": "Quality factor 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-2": {
                        "blurb": "Quality factor 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-3": {
                        "blurb": "Quality factor 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-4": {
                        "blurb": "Quality factor 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-5": {
                        "blurb": "Quality factor 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-6": {
                        "blurb": "Quality factor 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-7": {
                        "blurb": "Quality factor 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-8": {
                        "blurb": "Quality factor 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-9": {
                        "blurb": "Quality factor 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "s-0": {
                        "blurb": "Filter slope 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-0",
                        "writable": true
                    },
                    "s-1": {
                        "blurb": "Filter slope 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-1",
                        "writable": true
                    },
                    "s-10": {
                        "blurb": "Filter slope 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-10",
                        "writable": true
                    },
                    "s-11": {
                        "blurb": "Filter slope 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-11",
                        "writable": true
                    },
                    "s-12": {
                        "blurb": "Filter slope 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-12",
                        "writable": true
                    },
                    "s-13": {
                        "blurb": "Filter slope 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-13",
                        "writable": true
                    },
                    "s-14": {
                        "blurb": "Filter slope 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-14",
                        "writable": true
                    },
                    "s-15": {
                        "blurb": "Filter slope 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-15",
                        "writable": true
                    },
                    "s-2": {
                        "blurb": "Filter slope 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-2",
                        "writable": true
                    },
                    "s-3": {
                        "blurb": "Filter slope 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-3",
                        "writable": true
                    },
                    "s-4": {
                        "blurb": "Filter slope 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-4",
                        "writable": true
                    },
                    "s-5": {
                        "blurb": "Filter slope 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-5",
                        "writable": true
                    },
                    "s-6": {
                        "blurb": "Filter slope 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-6",
                        "writable": true
                    },
                    "s-7": {
                        "blurb": "Filter slope 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-7",
                        "writable": true
                    },
                    "s-8": {
                        "blurb": "Filter slope 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-8",
                        "writable": true
                    },
                    "s-9": {
                        "blurb": "Filter slope 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-9",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xm-0": {
                        "blurb": "Filter mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Filter mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Filter mute 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Filter mute 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Filter mute 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Filter mute 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Filter mute 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Filter mute 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Filter mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Filter mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Filter mute 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Filter mute 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Filter mute 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Filter mute 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Filter mute 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Filter mute 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Filter solo 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Filter solo 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Filter solo 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Filter solo 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Filter solo 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Filter solo 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Filter solo 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Filter solo 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Filter solo 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Filter solo 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Filter solo 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Filter solo 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Filter solo 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Filter solo 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Filter solo 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Filter solo 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lr": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x32 LeftRight",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x32-lr",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x32 LeftRight",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fl-0": {
                        "blurb": "Frequency Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-1": {
                        "blurb": "Frequency Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-10": {
                        "blurb": "Frequency Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-11": {
                        "blurb": "Frequency Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-12": {
                        "blurb": "Frequency Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-13": {
                        "blurb": "Frequency Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "315",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-14": {
                        "blurb": "Frequency Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-15": {
                        "blurb": "Frequency Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-16": {
                        "blurb": "Frequency Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-17": {
                        "blurb": "Frequency Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "800",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-18": {
                        "blurb": "Frequency Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-19": {
                        "blurb": "Frequency Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-2": {
                        "blurb": "Frequency Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-20": {
                        "blurb": "Frequency Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-21": {
                        "blurb": "Frequency Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-22": {
                        "blurb": "Frequency Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-23": {
                        "blurb": "Frequency Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3150",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-24": {
                        "blurb": "Frequency Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-25": {
                        "blurb": "Frequency Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-26": {
                        "blurb": "Frequency Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-27": {
                        "blurb": "Frequency Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-28": {
                        "blurb": "Frequency Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-29": {
                        "blurb": "Frequency Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "12500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-3": {
                        "blurb": "Frequency Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "31.5",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-30": {
                        "blurb": "Frequency Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-31": {
                        "blurb": "Frequency Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-4": {
                        "blurb": "Frequency Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-5": {
                        "blurb": "Frequency Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-6": {
                        "blurb": "Frequency Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-7": {
                        "blurb": "Frequency Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-8": {
                        "blurb": "Frequency Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fl-9": {
                        "blurb": "Frequency Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "125",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fml-0": {
                        "blurb": "Filter mode Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-0",
                        "writable": true
                    },
                    "fml-1": {
                        "blurb": "Filter mode Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-1",
                        "writable": true
                    },
                    "fml-10": {
                        "blurb": "Filter mode Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-10",
                        "writable": true
                    },
                    "fml-11": {
                        "blurb": "Filter mode Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-11",
                        "writable": true
                    },
                    "fml-12": {
                        "blurb": "Filter mode Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-12",
                        "writable": true
                    },
                    "fml-13": {
                        "blurb": "Filter mode Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-13",
                        "writable": true
                    },
                    "fml-14": {
                        "blurb": "Filter mode Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-14",
                        "writable": true
                    },
                    "fml-15": {
                        "blurb": "Filter mode Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-15",
                        "writable": true
                    },
                    "fml-16": {
                        "blurb": "Filter mode Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-16",
                        "writable": true
                    },
                    "fml-17": {
                        "blurb": "Filter mode Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-17",
                        "writable": true
                    },
                    "fml-18": {
                        "blurb": "Filter mode Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-18",
                        "writable": true
                    },
                    "fml-19": {
                        "blurb": "Filter mode Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-19",
                        "writable": true
                    },
                    "fml-2": {
                        "blurb": "Filter mode Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-2",
                        "writable": true
                    },
                    "fml-20": {
                        "blurb": "Filter mode Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-20",
                        "writable": true
                    },
                    "fml-21": {
                        "blurb": "Filter mode Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-21",
                        "writable": true
                    },
                    "fml-22": {
                        "blurb": "Filter mode Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-22",
                        "writable": true
                    },
                    "fml-23": {
                        "blurb": "Filter mode Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-23",
                        "writable": true
                    },
                    "fml-24": {
                        "blurb": "Filter mode Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-24",
                        "writable": true
                    },
                    "fml-25": {
                        "blurb": "Filter mode Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-25",
                        "writable": true
                    },
                    "fml-26": {
                        "blurb": "Filter mode Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-26",
                        "writable": true
                    },
                    "fml-27": {
                        "blurb": "Filter mode Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-27",
                        "writable": true
                    },
                    "fml-28": {
                        "blurb": "Filter mode Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-28",
                        "writable": true
                    },
                    "fml-29": {
                        "blurb": "Filter mode Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-29",
                        "writable": true
                    },
                    "fml-3": {
                        "blurb": "Filter mode Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-3",
                        "writable": true
                    },
                    "fml-30": {
                        "blurb": "Filter mode Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-30",
                        "writable": true
                    },
                    "fml-31": {
                        "blurb": "Filter mode Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-31",
                        "writable": true
                    },
                    "fml-4": {
                        "blurb": "Filter mode Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-4",
                        "writable": true
                    },
                    "fml-5": {
                        "blurb": "Filter mode Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-5",
                        "writable": true
                    },
                    "fml-6": {
                        "blurb": "Filter mode Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-6",
                        "writable": true
                    },
                    "fml-7": {
                        "blurb": "Filter mode Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-7",
                        "writable": true
                    },
                    "fml-8": {
                        "blurb": "Filter mode Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-8",
                        "writable": true
                    },
                    "fml-9": {
                        "blurb": "Filter mode Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-9",
                        "writable": true
                    },
                    "fmr-0": {
                        "blurb": "Filter mode Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-0",
                        "writable": true
                    },
                    "fmr-1": {
                        "blurb": "Filter mode Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-1",
                        "writable": true
                    },
                    "fmr-10": {
                        "blurb": "Filter mode Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-10",
                        "writable": true
                    },
                    "fmr-11": {
                        "blurb": "Filter mode Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-11",
                        "writable": true
                    },
                    "fmr-12": {
                        "blurb": "Filter mode Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-12",
                        "writable": true
                    },
                    "fmr-13": {
                        "blurb": "Filter mode Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-13",
                        "writable": true
                    },
                    "fmr-14": {
                        "blurb": "Filter mode Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-14",
                        "writable": true
                    },
                    "fmr-15": {
                        "blurb": "Filter mode Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-15",
                        "writable": true
                    },
                    "fmr-16": {
                        "blurb": "Filter mode Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-16",
                        "writable": true
                    },
                    "fmr-17": {
                        "blurb": "Filter mode Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-17",
                        "writable": true
                    },
                    "fmr-18": {
                        "blurb": "Filter mode Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-18",
                        "writable": true
                    },
                    "fmr-19": {
                        "blurb": "Filter mode Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-19",
                        "writable": true
                    },
                    "fmr-2": {
                        "blurb": "Filter mode Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-2",
                        "writable": true
                    },
                    "fmr-20": {
                        "blurb": "Filter mode Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-20",
                        "writable": true
                    },
                    "fmr-21": {
                        "blurb": "Filter mode Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-21",
                        "writable": true
                    },
                    "fmr-22": {
                        "blurb": "Filter mode Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-22",
                        "writable": true
                    },
                    "fmr-23": {
                        "blurb": "Filter mode Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-23",
                        "writable": true
                    },
                    "fmr-24": {
                        "blurb": "Filter mode Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-24",
                        "writable": true
                    },
                    "fmr-25": {
                        "blurb": "Filter mode Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-25",
                        "writable": true
                    },
                    "fmr-26": {
                        "blurb": "Filter mode Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-26",
                        "writable": true
                    },
                    "fmr-27": {
                        "blurb": "Filter mode Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-27",
                        "writable": true
                    },
                    "fmr-28": {
                        "blurb": "Filter mode Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-28",
                        "writable": true
                    },
                    "fmr-29": {
                        "blurb": "Filter mode Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-29",
                        "writable": true
                    },
                    "fmr-3": {
                        "blurb": "Filter mode Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-3",
                        "writable": true
                    },
                    "fmr-30": {
                        "blurb": "Filter mode Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-30",
                        "writable": true
                    },
                    "fmr-31": {
                        "blurb": "Filter mode Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-31",
                        "writable": true
                    },
                    "fmr-4": {
                        "blurb": "Filter mode Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-4",
                        "writable": true
                    },
                    "fmr-5": {
                        "blurb": "Filter mode Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-5",
                        "writable": true
                    },
                    "fmr-6": {
                        "blurb": "Filter mode Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-6",
                        "writable": true
                    },
                    "fmr-7": {
                        "blurb": "Filter mode Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-7",
                        "writable": true
                    },
                    "fmr-8": {
                        "blurb": "Filter mode Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-8",
                        "writable": true
                    },
                    "fmr-9": {
                        "blurb": "Filter mode Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-9",
                        "writable": true
                    },
                    "fr-0": {
                        "blurb": "Frequency Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-1": {
                        "blurb": "Frequency Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-10": {
                        "blurb": "Frequency Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-11": {
                        "blurb": "Frequency Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-12": {
                        "blurb": "Frequency Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-13": {
                        "blurb": "Frequency Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "315",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-14": {
                        "blurb": "Frequency Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-15": {
                        "blurb": "Frequency Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-16": {
                        "blurb": "Frequency Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-17": {
                        "blurb": "Frequency Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "800",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-18": {
                        "blurb": "Frequency Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-19": {
                        "blurb": "Frequency Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-2": {
                        "blurb": "Frequency Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-20": {
                        "blurb": "Frequency Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-21": {
                        "blurb": "Frequency Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-22": {
                        "blurb": "Frequency Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-23": {
                        "blurb": "Frequency Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3150",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-24": {
                        "blurb": "Frequency Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-25": {
                        "blurb": "Frequency Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-26": {
                        "blurb": "Frequency Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-27": {
                        "blurb": "Frequency Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-28": {
                        "blurb": "Frequency Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-29": {
                        "blurb": "Frequency Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "12500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-3": {
                        "blurb": "Frequency Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "31.5",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-30": {
                        "blurb": "Frequency Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-31": {
                        "blurb": "Frequency Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-4": {
                        "blurb": "Frequency Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-5": {
                        "blurb": "Frequency Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-6": {
                        "blurb": "Frequency Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-7": {
                        "blurb": "Frequency Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-8": {
                        "blurb": "Frequency Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fr-9": {
                        "blurb": "Frequency Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "125",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frqs-l": {
                        "blurb": "Frequency shift Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frqs-r": {
                        "blurb": "Frequency shift Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters Left 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfsel",
                        "writable": true
                    },
                    "ftl-0": {
                        "blurb": "Filter type Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-0",
                        "writable": true
                    },
                    "ftl-1": {
                        "blurb": "Filter type Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-1",
                        "writable": true
                    },
                    "ftl-10": {
                        "blurb": "Filter type Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-10",
                        "writable": true
                    },
                    "ftl-11": {
                        "blurb": "Filter type Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-11",
                        "writable": true
                    },
                    "ftl-12": {
                        "blurb": "Filter type Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-12",
                        "writable": true
                    },
                    "ftl-13": {
                        "blurb": "Filter type Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-13",
                        "writable": true
                    },
                    "ftl-14": {
                        "blurb": "Filter type Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-14",
                        "writable": true
                    },
                    "ftl-15": {
                        "blurb": "Filter type Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-15",
                        "writable": true
                    },
                    "ftl-16": {
                        "blurb": "Filter type Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-16",
                        "writable": true
                    },
                    "ftl-17": {
                        "blurb": "Filter type Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-17",
                        "writable": true
                    },
                    "ftl-18": {
                        "blurb": "Filter type Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-18",
                        "writable": true
                    },
                    "ftl-19": {
                        "blurb": "Filter type Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-19",
                        "writable": true
                    },
                    "ftl-2": {
                        "blurb": "Filter type Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-2",
                        "writable": true
                    },
                    "ftl-20": {
                        "blurb": "Filter type Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-20",
                        "writable": true
                    },
                    "ftl-21": {
                        "blurb": "Filter type Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-21",
                        "writable": true
                    },
                    "ftl-22": {
                        "blurb": "Filter type Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-22",
                        "writable": true
                    },
                    "ftl-23": {
                        "blurb": "Filter type Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-23",
                        "writable": true
                    },
                    "ftl-24": {
                        "blurb": "Filter type Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-24",
                        "writable": true
                    },
                    "ftl-25": {
                        "blurb": "Filter type Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-25",
                        "writable": true
                    },
                    "ftl-26": {
                        "blurb": "Filter type Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-26",
                        "writable": true
                    },
                    "ftl-27": {
                        "blurb": "Filter type Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-27",
                        "writable": true
                    },
                    "ftl-28": {
                        "blurb": "Filter type Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-28",
                        "writable": true
                    },
                    "ftl-29": {
                        "blurb": "Filter type Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-29",
                        "writable": true
                    },
                    "ftl-3": {
                        "blurb": "Filter type Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-3",
                        "writable": true
                    },
                    "ftl-30": {
                        "blurb": "Filter type Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-30",
                        "writable": true
                    },
                    "ftl-31": {
                        "blurb": "Filter type Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-31",
                        "writable": true
                    },
                    "ftl-4": {
                        "blurb": "Filter type Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-4",
                        "writable": true
                    },
                    "ftl-5": {
                        "blurb": "Filter type Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-5",
                        "writable": true
                    },
                    "ftl-6": {
                        "blurb": "Filter type Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-6",
                        "writable": true
                    },
                    "ftl-7": {
                        "blurb": "Filter type Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-7",
                        "writable": true
                    },
                    "ftl-8": {
                        "blurb": "Filter type Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-8",
                        "writable": true
                    },
                    "ftl-9": {
                        "blurb": "Filter type Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-9",
                        "writable": true
                    },
                    "ftr-0": {
                        "blurb": "Filter type Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-0",
                        "writable": true
                    },
                    "ftr-1": {
                        "blurb": "Filter type Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-1",
                        "writable": true
                    },
                    "ftr-10": {
                        "blurb": "Filter type Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-10",
                        "writable": true
                    },
                    "ftr-11": {
                        "blurb": "Filter type Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-11",
                        "writable": true
                    },
                    "ftr-12": {
                        "blurb": "Filter type Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-12",
                        "writable": true
                    },
                    "ftr-13": {
                        "blurb": "Filter type Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-13",
                        "writable": true
                    },
                    "ftr-14": {
                        "blurb": "Filter type Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-14",
                        "writable": true
                    },
                    "ftr-15": {
                        "blurb": "Filter type Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-15",
                        "writable": true
                    },
                    "ftr-16": {
                        "blurb": "Filter type Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-16",
                        "writable": true
                    },
                    "ftr-17": {
                        "blurb": "Filter type Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-17",
                        "writable": true
                    },
                    "ftr-18": {
                        "blurb": "Filter type Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-18",
                        "writable": true
                    },
                    "ftr-19": {
                        "blurb": "Filter type Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-19",
                        "writable": true
                    },
                    "ftr-2": {
                        "blurb": "Filter type Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-2",
                        "writable": true
                    },
                    "ftr-20": {
                        "blurb": "Filter type Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-20",
                        "writable": true
                    },
                    "ftr-21": {
                        "blurb": "Filter type Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-21",
                        "writable": true
                    },
                    "ftr-22": {
                        "blurb": "Filter type Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-22",
                        "writable": true
                    },
                    "ftr-23": {
                        "blurb": "Filter type Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-23",
                        "writable": true
                    },
                    "ftr-24": {
                        "blurb": "Filter type Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-24",
                        "writable": true
                    },
                    "ftr-25": {
                        "blurb": "Filter type Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-25",
                        "writable": true
                    },
                    "ftr-26": {
                        "blurb": "Filter type Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-26",
                        "writable": true
                    },
                    "ftr-27": {
                        "blurb": "Filter type Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-27",
                        "writable": true
                    },
                    "ftr-28": {
                        "blurb": "Filter type Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-28",
                        "writable": true
                    },
                    "ftr-29": {
                        "blurb": "Filter type Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-29",
                        "writable": true
                    },
                    "ftr-3": {
                        "blurb": "Filter type Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-3",
                        "writable": true
                    },
                    "ftr-30": {
                        "blurb": "Filter type Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-30",
                        "writable": true
                    },
                    "ftr-31": {
                        "blurb": "Filter type Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-31",
                        "writable": true
                    },
                    "ftr-4": {
                        "blurb": "Filter type Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-4",
                        "writable": true
                    },
                    "ftr-5": {
                        "blurb": "Filter type Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-5",
                        "writable": true
                    },
                    "ftr-6": {
                        "blurb": "Filter type Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-6",
                        "writable": true
                    },
                    "ftr-7": {
                        "blurb": "Filter type Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-7",
                        "writable": true
                    },
                    "ftr-8": {
                        "blurb": "Filter type Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-8",
                        "writable": true
                    },
                    "ftr-9": {
                        "blurb": "Filter type Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-9",
                        "writable": true
                    },
                    "fvl-0": {
                        "blurb": "Filter visibility Left 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-1": {
                        "blurb": "Filter visibility Left 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-10": {
                        "blurb": "Filter visibility Left 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-11": {
                        "blurb": "Filter visibility Left 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-12": {
                        "blurb": "Filter visibility Left 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-13": {
                        "blurb": "Filter visibility Left 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-14": {
                        "blurb": "Filter visibility Left 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-15": {
                        "blurb": "Filter visibility Left 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-16": {
                        "blurb": "Filter visibility Left 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-17": {
                        "blurb": "Filter visibility Left 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-18": {
                        "blurb": "Filter visibility Left 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-19": {
                        "blurb": "Filter visibility Left 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-2": {
                        "blurb": "Filter visibility Left 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-20": {
                        "blurb": "Filter visibility Left 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-21": {
                        "blurb": "Filter visibility Left 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-22": {
                        "blurb": "Filter visibility Left 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-23": {
                        "blurb": "Filter visibility Left 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-24": {
                        "blurb": "Filter visibility Left 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-25": {
                        "blurb": "Filter visibility Left 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-26": {
                        "blurb": "Filter visibility Left 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-27": {
                        "blurb": "Filter visibility Left 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-28": {
                        "blurb": "Filter visibility Left 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-29": {
                        "blurb": "Filter visibility Left 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-3": {
                        "blurb": "Filter visibility Left 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-30": {
                        "blurb": "Filter visibility Left 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-31": {
                        "blurb": "Filter visibility Left 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-4": {
                        "blurb": "Filter visibility Left 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-5": {
                        "blurb": "Filter visibility Left 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-6": {
                        "blurb": "Filter visibility Left 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-7": {
                        "blurb": "Filter visibility Left 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-8": {
                        "blurb": "Filter visibility Left 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvl-9": {
                        "blurb": "Filter visibility Left 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-0": {
                        "blurb": "Filter visibility Right 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-1": {
                        "blurb": "Filter visibility Right 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-10": {
                        "blurb": "Filter visibility Right 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-11": {
                        "blurb": "Filter visibility Right 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-12": {
                        "blurb": "Filter visibility Right 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-13": {
                        "blurb": "Filter visibility Right 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-14": {
                        "blurb": "Filter visibility Right 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-15": {
                        "blurb": "Filter visibility Right 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-16": {
                        "blurb": "Filter visibility Right 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-17": {
                        "blurb": "Filter visibility Right 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-18": {
                        "blurb": "Filter visibility Right 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-19": {
                        "blurb": "Filter visibility Right 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-2": {
                        "blurb": "Filter visibility Right 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-20": {
                        "blurb": "Filter visibility Right 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-21": {
                        "blurb": "Filter visibility Right 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-22": {
                        "blurb": "Filter visibility Right 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-23": {
                        "blurb": "Filter visibility Right 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-24": {
                        "blurb": "Filter visibility Right 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-25": {
                        "blurb": "Filter visibility Right 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-26": {
                        "blurb": "Filter visibility Right 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-27": {
                        "blurb": "Filter visibility Right 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-28": {
                        "blurb": "Filter visibility Right 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-29": {
                        "blurb": "Filter visibility Right 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-3": {
                        "blurb": "Filter visibility Right 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-30": {
                        "blurb": "Filter visibility Right 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-31": {
                        "blurb": "Filter visibility Right 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-4": {
                        "blurb": "Filter visibility Right 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-5": {
                        "blurb": "Filter visibility Right 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-6": {
                        "blurb": "Filter visibility Right 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-7": {
                        "blurb": "Filter visibility Right 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-8": {
                        "blurb": "Filter visibility Right 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvr-9": {
                        "blurb": "Filter visibility Right 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-0": {
                        "blurb": "Gain Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-1": {
                        "blurb": "Gain Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-10": {
                        "blurb": "Gain Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-11": {
                        "blurb": "Gain Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-12": {
                        "blurb": "Gain Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-13": {
                        "blurb": "Gain Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-14": {
                        "blurb": "Gain Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-15": {
                        "blurb": "Gain Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-16": {
                        "blurb": "Gain Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-17": {
                        "blurb": "Gain Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-18": {
                        "blurb": "Gain Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-19": {
                        "blurb": "Gain Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-2": {
                        "blurb": "Gain Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-20": {
                        "blurb": "Gain Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-21": {
                        "blurb": "Gain Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-22": {
                        "blurb": "Gain Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-23": {
                        "blurb": "Gain Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-24": {
                        "blurb": "Gain Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-25": {
                        "blurb": "Gain Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-26": {
                        "blurb": "Gain Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-27": {
                        "blurb": "Gain Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-28": {
                        "blurb": "Gain Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-29": {
                        "blurb": "Gain Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-3": {
                        "blurb": "Gain Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-30": {
                        "blurb": "Gain Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-31": {
                        "blurb": "Gain Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-4": {
                        "blurb": "Gain Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-5": {
                        "blurb": "Gain Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-6": {
                        "blurb": "Gain Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-7": {
                        "blurb": "Gain Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-8": {
                        "blurb": "Gain Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gl-9": {
                        "blurb": "Gain Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-0": {
                        "blurb": "Gain Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-1": {
                        "blurb": "Gain Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-10": {
                        "blurb": "Gain Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-11": {
                        "blurb": "Gain Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-12": {
                        "blurb": "Gain Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-13": {
                        "blurb": "Gain Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-14": {
                        "blurb": "Gain Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-15": {
                        "blurb": "Gain Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-16": {
                        "blurb": "Gain Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-17": {
                        "blurb": "Gain Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-18": {
                        "blurb": "Gain Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-19": {
                        "blurb": "Gain Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-2": {
                        "blurb": "Gain Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-20": {
                        "blurb": "Gain Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-21": {
                        "blurb": "Gain Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-22": {
                        "blurb": "Gain Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-23": {
                        "blurb": "Gain Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-24": {
                        "blurb": "Gain Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-25": {
                        "blurb": "Gain Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-26": {
                        "blurb": "Gain Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-27": {
                        "blurb": "Gain Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-28": {
                        "blurb": "Gain Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-29": {
                        "blurb": "Gain Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-3": {
                        "blurb": "Gain Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-30": {
                        "blurb": "Gain Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-31": {
                        "blurb": "Gain Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-4": {
                        "blurb": "Gain Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-5": {
                        "blurb": "Gain Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-6": {
                        "blurb": "Gain Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-7": {
                        "blurb": "Gain Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-8": {
                        "blurb": "Gain Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gr-9": {
                        "blurb": "Gain Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-0": {
                        "blurb": "Hue Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-1": {
                        "blurb": "Hue Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-10": {
                        "blurb": "Hue Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-11": {
                        "blurb": "Hue Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.34375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-12": {
                        "blurb": "Hue Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-13": {
                        "blurb": "Hue Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.40625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-14": {
                        "blurb": "Hue Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-15": {
                        "blurb": "Hue Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.46875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-16": {
                        "blurb": "Hue Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-17": {
                        "blurb": "Hue Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.53125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-18": {
                        "blurb": "Hue Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-19": {
                        "blurb": "Hue Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.59375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-2": {
                        "blurb": "Hue Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-20": {
                        "blurb": "Hue Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-21": {
                        "blurb": "Hue Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.65625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-22": {
                        "blurb": "Hue Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-23": {
                        "blurb": "Hue Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.71875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-24": {
                        "blurb": "Hue Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-25": {
                        "blurb": "Hue Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-26": {
                        "blurb": "Hue Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-27": {
                        "blurb": "Hue Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.84375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-28": {
                        "blurb": "Hue Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-29": {
                        "blurb": "Hue Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.90625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-3": {
                        "blurb": "Hue Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.09375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-30": {
                        "blurb": "Hue Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-31": {
                        "blurb": "Hue Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.96875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-4": {
                        "blurb": "Hue Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-5": {
                        "blurb": "Hue Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-6": {
                        "blurb": "Hue Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-7": {
                        "blurb": "Hue Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.21875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-8": {
                        "blurb": "Hue Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huel-9": {
                        "blurb": "Hue Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-0": {
                        "blurb": "Hue Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-1": {
                        "blurb": "Hue Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-10": {
                        "blurb": "Hue Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-11": {
                        "blurb": "Hue Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.34375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-12": {
                        "blurb": "Hue Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-13": {
                        "blurb": "Hue Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.40625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-14": {
                        "blurb": "Hue Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-15": {
                        "blurb": "Hue Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.46875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-16": {
                        "blurb": "Hue Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-17": {
                        "blurb": "Hue Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.53125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-18": {
                        "blurb": "Hue Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-19": {
                        "blurb": "Hue Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.59375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-2": {
                        "blurb": "Hue Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-20": {
                        "blurb": "Hue Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-21": {
                        "blurb": "Hue Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.65625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-22": {
                        "blurb": "Hue Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-23": {
                        "blurb": "Hue Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.71875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-24": {
                        "blurb": "Hue Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-25": {
                        "blurb": "Hue Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-26": {
                        "blurb": "Hue Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-27": {
                        "blurb": "Hue Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.84375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-28": {
                        "blurb": "Hue Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-29": {
                        "blurb": "Hue Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.90625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-3": {
                        "blurb": "Hue Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.09375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-30": {
                        "blurb": "Hue Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-31": {
                        "blurb": "Hue Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.96875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-4": {
                        "blurb": "Hue Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-5": {
                        "blurb": "Hue Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-6": {
                        "blurb": "Hue Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-7": {
                        "blurb": "Hue Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.21875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-8": {
                        "blurb": "Hue Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huer-9": {
                        "blurb": "Hue Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ql-0": {
                        "blurb": "Quality factor Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-1": {
                        "blurb": "Quality factor Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-10": {
                        "blurb": "Quality factor Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-11": {
                        "blurb": "Quality factor Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-12": {
                        "blurb": "Quality factor Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-13": {
                        "blurb": "Quality factor Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-14": {
                        "blurb": "Quality factor Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-15": {
                        "blurb": "Quality factor Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-16": {
                        "blurb": "Quality factor Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-17": {
                        "blurb": "Quality factor Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-18": {
                        "blurb": "Quality factor Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-19": {
                        "blurb": "Quality factor Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-2": {
                        "blurb": "Quality factor Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-20": {
                        "blurb": "Quality factor Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-21": {
                        "blurb": "Quality factor Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-22": {
                        "blurb": "Quality factor Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-23": {
                        "blurb": "Quality factor Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-24": {
                        "blurb": "Quality factor Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-25": {
                        "blurb": "Quality factor Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-26": {
                        "blurb": "Quality factor Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-27": {
                        "blurb": "Quality factor Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-28": {
                        "blurb": "Quality factor Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-29": {
                        "blurb": "Quality factor Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-3": {
                        "blurb": "Quality factor Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-30": {
                        "blurb": "Quality factor Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-31": {
                        "blurb": "Quality factor Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-4": {
                        "blurb": "Quality factor Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-5": {
                        "blurb": "Quality factor Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-6": {
                        "blurb": "Quality factor Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-7": {
                        "blurb": "Quality factor Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-8": {
                        "blurb": "Quality factor Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ql-9": {
                        "blurb": "Quality factor Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-0": {
                        "blurb": "Quality factor Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-1": {
                        "blurb": "Quality factor Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-10": {
                        "blurb": "Quality factor Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-11": {
                        "blurb": "Quality factor Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-12": {
                        "blurb": "Quality factor Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-13": {
                        "blurb": "Quality factor Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-14": {
                        "blurb": "Quality factor Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-15": {
                        "blurb": "Quality factor Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-16": {
                        "blurb": "Quality factor Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-17": {
                        "blurb": "Quality factor Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-18": {
                        "blurb": "Quality factor Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-19": {
                        "blurb": "Quality factor Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-2": {
                        "blurb": "Quality factor Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-20": {
                        "blurb": "Quality factor Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-21": {
                        "blurb": "Quality factor Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-22": {
                        "blurb": "Quality factor Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-23": {
                        "blurb": "Quality factor Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-24": {
                        "blurb": "Quality factor Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-25": {
                        "blurb": "Quality factor Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-26": {
                        "blurb": "Quality factor Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-27": {
                        "blurb": "Quality factor Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-28": {
                        "blurb": "Quality factor Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-29": {
                        "blurb": "Quality factor Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-3": {
                        "blurb": "Quality factor Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-30": {
                        "blurb": "Quality factor Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-31": {
                        "blurb": "Quality factor Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-4": {
                        "blurb": "Quality factor Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-5": {
                        "blurb": "Quality factor Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-6": {
                        "blurb": "Quality factor Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-7": {
                        "blurb": "Quality factor Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-8": {
                        "blurb": "Quality factor Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qr-9": {
                        "blurb": "Quality factor Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sl-0": {
                        "blurb": "Filter slope Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-0",
                        "writable": true
                    },
                    "sl-1": {
                        "blurb": "Filter slope Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-1",
                        "writable": true
                    },
                    "sl-10": {
                        "blurb": "Filter slope Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-10",
                        "writable": true
                    },
                    "sl-11": {
                        "blurb": "Filter slope Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-11",
                        "writable": true
                    },
                    "sl-12": {
                        "blurb": "Filter slope Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-12",
                        "writable": true
                    },
                    "sl-13": {
                        "blurb": "Filter slope Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-13",
                        "writable": true
                    },
                    "sl-14": {
                        "blurb": "Filter slope Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-14",
                        "writable": true
                    },
                    "sl-15": {
                        "blurb": "Filter slope Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-15",
                        "writable": true
                    },
                    "sl-16": {
                        "blurb": "Filter slope Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-16",
                        "writable": true
                    },
                    "sl-17": {
                        "blurb": "Filter slope Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-17",
                        "writable": true
                    },
                    "sl-18": {
                        "blurb": "Filter slope Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-18",
                        "writable": true
                    },
                    "sl-19": {
                        "blurb": "Filter slope Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-19",
                        "writable": true
                    },
                    "sl-2": {
                        "blurb": "Filter slope Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-2",
                        "writable": true
                    },
                    "sl-20": {
                        "blurb": "Filter slope Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-20",
                        "writable": true
                    },
                    "sl-21": {
                        "blurb": "Filter slope Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-21",
                        "writable": true
                    },
                    "sl-22": {
                        "blurb": "Filter slope Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-22",
                        "writable": true
                    },
                    "sl-23": {
                        "blurb": "Filter slope Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-23",
                        "writable": true
                    },
                    "sl-24": {
                        "blurb": "Filter slope Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-24",
                        "writable": true
                    },
                    "sl-25": {
                        "blurb": "Filter slope Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-25",
                        "writable": true
                    },
                    "sl-26": {
                        "blurb": "Filter slope Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-26",
                        "writable": true
                    },
                    "sl-27": {
                        "blurb": "Filter slope Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-27",
                        "writable": true
                    },
                    "sl-28": {
                        "blurb": "Filter slope Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-28",
                        "writable": true
                    },
                    "sl-29": {
                        "blurb": "Filter slope Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-29",
                        "writable": true
                    },
                    "sl-3": {
                        "blurb": "Filter slope Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-3",
                        "writable": true
                    },
                    "sl-30": {
                        "blurb": "Filter slope Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-30",
                        "writable": true
                    },
                    "sl-31": {
                        "blurb": "Filter slope Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-31",
                        "writable": true
                    },
                    "sl-4": {
                        "blurb": "Filter slope Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-4",
                        "writable": true
                    },
                    "sl-5": {
                        "blurb": "Filter slope Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-5",
                        "writable": true
                    },
                    "sl-6": {
                        "blurb": "Filter slope Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-6",
                        "writable": true
                    },
                    "sl-7": {
                        "blurb": "Filter slope Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-7",
                        "writable": true
                    },
                    "sl-8": {
                        "blurb": "Filter slope Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-8",
                        "writable": true
                    },
                    "sl-9": {
                        "blurb": "Filter slope Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-9",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sr-0": {
                        "blurb": "Filter slope Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-0",
                        "writable": true
                    },
                    "sr-1": {
                        "blurb": "Filter slope Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-1",
                        "writable": true
                    },
                    "sr-10": {
                        "blurb": "Filter slope Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-10",
                        "writable": true
                    },
                    "sr-11": {
                        "blurb": "Filter slope Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-11",
                        "writable": true
                    },
                    "sr-12": {
                        "blurb": "Filter slope Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-12",
                        "writable": true
                    },
                    "sr-13": {
                        "blurb": "Filter slope Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-13",
                        "writable": true
                    },
                    "sr-14": {
                        "blurb": "Filter slope Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-14",
                        "writable": true
                    },
                    "sr-15": {
                        "blurb": "Filter slope Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-15",
                        "writable": true
                    },
                    "sr-16": {
                        "blurb": "Filter slope Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-16",
                        "writable": true
                    },
                    "sr-17": {
                        "blurb": "Filter slope Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-17",
                        "writable": true
                    },
                    "sr-18": {
                        "blurb": "Filter slope Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-18",
                        "writable": true
                    },
                    "sr-19": {
                        "blurb": "Filter slope Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-19",
                        "writable": true
                    },
                    "sr-2": {
                        "blurb": "Filter slope Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-2",
                        "writable": true
                    },
                    "sr-20": {
                        "blurb": "Filter slope Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-20",
                        "writable": true
                    },
                    "sr-21": {
                        "blurb": "Filter slope Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-21",
                        "writable": true
                    },
                    "sr-22": {
                        "blurb": "Filter slope Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-22",
                        "writable": true
                    },
                    "sr-23": {
                        "blurb": "Filter slope Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-23",
                        "writable": true
                    },
                    "sr-24": {
                        "blurb": "Filter slope Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-24",
                        "writable": true
                    },
                    "sr-25": {
                        "blurb": "Filter slope Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-25",
                        "writable": true
                    },
                    "sr-26": {
                        "blurb": "Filter slope Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-26",
                        "writable": true
                    },
                    "sr-27": {
                        "blurb": "Filter slope Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-27",
                        "writable": true
                    },
                    "sr-28": {
                        "blurb": "Filter slope Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-28",
                        "writable": true
                    },
                    "sr-29": {
                        "blurb": "Filter slope Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-29",
                        "writable": true
                    },
                    "sr-3": {
                        "blurb": "Filter slope Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-3",
                        "writable": true
                    },
                    "sr-30": {
                        "blurb": "Filter slope Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-30",
                        "writable": true
                    },
                    "sr-31": {
                        "blurb": "Filter slope Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-31",
                        "writable": true
                    },
                    "sr-4": {
                        "blurb": "Filter slope Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-4",
                        "writable": true
                    },
                    "sr-5": {
                        "blurb": "Filter slope Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-5",
                        "writable": true
                    },
                    "sr-6": {
                        "blurb": "Filter slope Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-6",
                        "writable": true
                    },
                    "sr-7": {
                        "blurb": "Filter slope Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-7",
                        "writable": true
                    },
                    "sr-8": {
                        "blurb": "Filter slope Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-8",
                        "writable": true
                    },
                    "sr-9": {
                        "blurb": "Filter slope Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-9",
                        "writable": true
                    },
                    "xml-0": {
                        "blurb": "Filter mute Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-1": {
                        "blurb": "Filter mute Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-10": {
                        "blurb": "Filter mute Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-11": {
                        "blurb": "Filter mute Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-12": {
                        "blurb": "Filter mute Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-13": {
                        "blurb": "Filter mute Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-14": {
                        "blurb": "Filter mute Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-15": {
                        "blurb": "Filter mute Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-16": {
                        "blurb": "Filter mute Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-17": {
                        "blurb": "Filter mute Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-18": {
                        "blurb": "Filter mute Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-19": {
                        "blurb": "Filter mute Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-2": {
                        "blurb": "Filter mute Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-20": {
                        "blurb": "Filter mute Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-21": {
                        "blurb": "Filter mute Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-22": {
                        "blurb": "Filter mute Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-23": {
                        "blurb": "Filter mute Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-24": {
                        "blurb": "Filter mute Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-25": {
                        "blurb": "Filter mute Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-26": {
                        "blurb": "Filter mute Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-27": {
                        "blurb": "Filter mute Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-28": {
                        "blurb": "Filter mute Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-29": {
                        "blurb": "Filter mute Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-3": {
                        "blurb": "Filter mute Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-30": {
                        "blurb": "Filter mute Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-31": {
                        "blurb": "Filter mute Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-4": {
                        "blurb": "Filter mute Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-5": {
                        "blurb": "Filter mute Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-6": {
                        "blurb": "Filter mute Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-7": {
                        "blurb": "Filter mute Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-8": {
                        "blurb": "Filter mute Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xml-9": {
                        "blurb": "Filter mute Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-0": {
                        "blurb": "Filter mute Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-1": {
                        "blurb": "Filter mute Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-10": {
                        "blurb": "Filter mute Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-11": {
                        "blurb": "Filter mute Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-12": {
                        "blurb": "Filter mute Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-13": {
                        "blurb": "Filter mute Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-14": {
                        "blurb": "Filter mute Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-15": {
                        "blurb": "Filter mute Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-16": {
                        "blurb": "Filter mute Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-17": {
                        "blurb": "Filter mute Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-18": {
                        "blurb": "Filter mute Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-19": {
                        "blurb": "Filter mute Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-2": {
                        "blurb": "Filter mute Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-20": {
                        "blurb": "Filter mute Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-21": {
                        "blurb": "Filter mute Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-22": {
                        "blurb": "Filter mute Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-23": {
                        "blurb": "Filter mute Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-24": {
                        "blurb": "Filter mute Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-25": {
                        "blurb": "Filter mute Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-26": {
                        "blurb": "Filter mute Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-27": {
                        "blurb": "Filter mute Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-28": {
                        "blurb": "Filter mute Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-29": {
                        "blurb": "Filter mute Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-3": {
                        "blurb": "Filter mute Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-30": {
                        "blurb": "Filter mute Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-31": {
                        "blurb": "Filter mute Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-4": {
                        "blurb": "Filter mute Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-5": {
                        "blurb": "Filter mute Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-6": {
                        "blurb": "Filter mute Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-7": {
                        "blurb": "Filter mute Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-8": {
                        "blurb": "Filter mute Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmr-9": {
                        "blurb": "Filter mute Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-0": {
                        "blurb": "Filter solo Left 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-1": {
                        "blurb": "Filter solo Left 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-10": {
                        "blurb": "Filter solo Left 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-11": {
                        "blurb": "Filter solo Left 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-12": {
                        "blurb": "Filter solo Left 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-13": {
                        "blurb": "Filter solo Left 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-14": {
                        "blurb": "Filter solo Left 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-15": {
                        "blurb": "Filter solo Left 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-16": {
                        "blurb": "Filter solo Left 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-17": {
                        "blurb": "Filter solo Left 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-18": {
                        "blurb": "Filter solo Left 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-19": {
                        "blurb": "Filter solo Left 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-2": {
                        "blurb": "Filter solo Left 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-20": {
                        "blurb": "Filter solo Left 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-21": {
                        "blurb": "Filter solo Left 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-22": {
                        "blurb": "Filter solo Left 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-23": {
                        "blurb": "Filter solo Left 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-24": {
                        "blurb": "Filter solo Left 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-25": {
                        "blurb": "Filter solo Left 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-26": {
                        "blurb": "Filter solo Left 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-27": {
                        "blurb": "Filter solo Left 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-28": {
                        "blurb": "Filter solo Left 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-29": {
                        "blurb": "Filter solo Left 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-3": {
                        "blurb": "Filter solo Left 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-30": {
                        "blurb": "Filter solo Left 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-31": {
                        "blurb": "Filter solo Left 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-4": {
                        "blurb": "Filter solo Left 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-5": {
                        "blurb": "Filter solo Left 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-6": {
                        "blurb": "Filter solo Left 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-7": {
                        "blurb": "Filter solo Left 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-8": {
                        "blurb": "Filter solo Left 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsl-9": {
                        "blurb": "Filter solo Left 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-0": {
                        "blurb": "Filter solo Right 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-1": {
                        "blurb": "Filter solo Right 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-10": {
                        "blurb": "Filter solo Right 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-11": {
                        "blurb": "Filter solo Right 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-12": {
                        "blurb": "Filter solo Right 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-13": {
                        "blurb": "Filter solo Right 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-14": {
                        "blurb": "Filter solo Right 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-15": {
                        "blurb": "Filter solo Right 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-16": {
                        "blurb": "Filter solo Right 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-17": {
                        "blurb": "Filter solo Right 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-18": {
                        "blurb": "Filter solo Right 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-19": {
                        "blurb": "Filter solo Right 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-2": {
                        "blurb": "Filter solo Right 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-20": {
                        "blurb": "Filter solo Right 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-21": {
                        "blurb": "Filter solo Right 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-22": {
                        "blurb": "Filter solo Right 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-23": {
                        "blurb": "Filter solo Right 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-24": {
                        "blurb": "Filter solo Right 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-25": {
                        "blurb": "Filter solo Right 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-26": {
                        "blurb": "Filter solo Right 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-27": {
                        "blurb": "Filter solo Right 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-28": {
                        "blurb": "Filter solo Right 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-29": {
                        "blurb": "Filter solo Right 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-3": {
                        "blurb": "Filter solo Right 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-30": {
                        "blurb": "Filter solo Right 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-31": {
                        "blurb": "Filter solo Right 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-4": {
                        "blurb": "Filter solo Right 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-5": {
                        "blurb": "Filter solo Right 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-6": {
                        "blurb": "Filter solo Right 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-7": {
                        "blurb": "Filter solo Right 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-8": {
                        "blurb": "Filter solo Right 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsr-9": {
                        "blurb": "Filter solo Right 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mono": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x32 Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x32-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x32 Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "f-0": {
                        "blurb": "Frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-1": {
                        "blurb": "Frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-10": {
                        "blurb": "Frequency 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-11": {
                        "blurb": "Frequency 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-12": {
                        "blurb": "Frequency 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-13": {
                        "blurb": "Frequency 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "315",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-14": {
                        "blurb": "Frequency 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-15": {
                        "blurb": "Frequency 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-16": {
                        "blurb": "Frequency 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-17": {
                        "blurb": "Frequency 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "800",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-18": {
                        "blurb": "Frequency 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-19": {
                        "blurb": "Frequency 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-2": {
                        "blurb": "Frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-20": {
                        "blurb": "Frequency 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-21": {
                        "blurb": "Frequency 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-22": {
                        "blurb": "Frequency 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-23": {
                        "blurb": "Frequency 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3150",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-24": {
                        "blurb": "Frequency 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-25": {
                        "blurb": "Frequency 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-26": {
                        "blurb": "Frequency 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-27": {
                        "blurb": "Frequency 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-28": {
                        "blurb": "Frequency 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-29": {
                        "blurb": "Frequency 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "12500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-3": {
                        "blurb": "Frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "31.5",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-30": {
                        "blurb": "Frequency 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-31": {
                        "blurb": "Frequency 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-4": {
                        "blurb": "Frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-5": {
                        "blurb": "Frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-6": {
                        "blurb": "Frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-7": {
                        "blurb": "Frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-8": {
                        "blurb": "Frequency 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-9": {
                        "blurb": "Frequency 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "125",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofft",
                        "writable": true
                    },
                    "fm-0": {
                        "blurb": "Filter mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-0",
                        "writable": true
                    },
                    "fm-1": {
                        "blurb": "Filter mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-1",
                        "writable": true
                    },
                    "fm-10": {
                        "blurb": "Filter mode 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-10",
                        "writable": true
                    },
                    "fm-11": {
                        "blurb": "Filter mode 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-11",
                        "writable": true
                    },
                    "fm-12": {
                        "blurb": "Filter mode 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-12",
                        "writable": true
                    },
                    "fm-13": {
                        "blurb": "Filter mode 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-13",
                        "writable": true
                    },
                    "fm-14": {
                        "blurb": "Filter mode 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-14",
                        "writable": true
                    },
                    "fm-15": {
                        "blurb": "Filter mode 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-15",
                        "writable": true
                    },
                    "fm-16": {
                        "blurb": "Filter mode 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-16",
                        "writable": true
                    },
                    "fm-17": {
                        "blurb": "Filter mode 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-17",
                        "writable": true
                    },
                    "fm-18": {
                        "blurb": "Filter mode 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-18",
                        "writable": true
                    },
                    "fm-19": {
                        "blurb": "Filter mode 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-19",
                        "writable": true
                    },
                    "fm-2": {
                        "blurb": "Filter mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-2",
                        "writable": true
                    },
                    "fm-20": {
                        "blurb": "Filter mode 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-20",
                        "writable": true
                    },
                    "fm-21": {
                        "blurb": "Filter mode 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-21",
                        "writable": true
                    },
                    "fm-22": {
                        "blurb": "Filter mode 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-22",
                        "writable": true
                    },
                    "fm-23": {
                        "blurb": "Filter mode 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-23",
                        "writable": true
                    },
                    "fm-24": {
                        "blurb": "Filter mode 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-24",
                        "writable": true
                    },
                    "fm-25": {
                        "blurb": "Filter mode 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-25",
                        "writable": true
                    },
                    "fm-26": {
                        "blurb": "Filter mode 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-26",
                        "writable": true
                    },
                    "fm-27": {
                        "blurb": "Filter mode 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-27",
                        "writable": true
                    },
                    "fm-28": {
                        "blurb": "Filter mode 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-28",
                        "writable": true
                    },
                    "fm-29": {
                        "blurb": "Filter mode 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-29",
                        "writable": true
                    },
                    "fm-3": {
                        "blurb": "Filter mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-3",
                        "writable": true
                    },
                    "fm-30": {
                        "blurb": "Filter mode 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-30",
                        "writable": true
                    },
                    "fm-31": {
                        "blurb": "Filter mode 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-31",
                        "writable": true
                    },
                    "fm-4": {
                        "blurb": "Filter mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-4",
                        "writable": true
                    },
                    "fm-5": {
                        "blurb": "Filter mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-5",
                        "writable": true
                    },
                    "fm-6": {
                        "blurb": "Filter mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-6",
                        "writable": true
                    },
                    "fm-7": {
                        "blurb": "Filter mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-7",
                        "writable": true
                    },
                    "fm-8": {
                        "blurb": "Filter mode 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-8",
                        "writable": true
                    },
                    "fm-9": {
                        "blurb": "Filter mode 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-9",
                        "writable": true
                    },
                    "frqs": {
                        "blurb": "Frequency shift",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofsel",
                        "writable": true
                    },
                    "ft-0": {
                        "blurb": "Filter type 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-0",
                        "writable": true
                    },
                    "ft-1": {
                        "blurb": "Filter type 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-1",
                        "writable": true
                    },
                    "ft-10": {
                        "blurb": "Filter type 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-10",
                        "writable": true
                    },
                    "ft-11": {
                        "blurb": "Filter type 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-11",
                        "writable": true
                    },
                    "ft-12": {
                        "blurb": "Filter type 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-12",
                        "writable": true
                    },
                    "ft-13": {
                        "blurb": "Filter type 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-13",
                        "writable": true
                    },
                    "ft-14": {
                        "blurb": "Filter type 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-14",
                        "writable": true
                    },
                    "ft-15": {
                        "blurb": "Filter type 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-15",
                        "writable": true
                    },
                    "ft-16": {
                        "blurb": "Filter type 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-16",
                        "writable": true
                    },
                    "ft-17": {
                        "blurb": "Filter type 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-17",
                        "writable": true
                    },
                    "ft-18": {
                        "blurb": "Filter type 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-18",
                        "writable": true
                    },
                    "ft-19": {
                        "blurb": "Filter type 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-19",
                        "writable": true
                    },
                    "ft-2": {
                        "blurb": "Filter type 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-2",
                        "writable": true
                    },
                    "ft-20": {
                        "blurb": "Filter type 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-20",
                        "writable": true
                    },
                    "ft-21": {
                        "blurb": "Filter type 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-21",
                        "writable": true
                    },
                    "ft-22": {
                        "blurb": "Filter type 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-22",
                        "writable": true
                    },
                    "ft-23": {
                        "blurb": "Filter type 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-23",
                        "writable": true
                    },
                    "ft-24": {
                        "blurb": "Filter type 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-24",
                        "writable": true
                    },
                    "ft-25": {
                        "blurb": "Filter type 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-25",
                        "writable": true
                    },
                    "ft-26": {
                        "blurb": "Filter type 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-26",
                        "writable": true
                    },
                    "ft-27": {
                        "blurb": "Filter type 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-27",
                        "writable": true
                    },
                    "ft-28": {
                        "blurb": "Filter type 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-28",
                        "writable": true
                    },
                    "ft-29": {
                        "blurb": "Filter type 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-29",
                        "writable": true
                    },
                    "ft-3": {
                        "blurb": "Filter type 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-3",
                        "writable": true
                    },
                    "ft-30": {
                        "blurb": "Filter type 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-30",
                        "writable": true
                    },
                    "ft-31": {
                        "blurb": "Filter type 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-31",
                        "writable": true
                    },
                    "ft-4": {
                        "blurb": "Filter type 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-4",
                        "writable": true
                    },
                    "ft-5": {
                        "blurb": "Filter type 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-5",
                        "writable": true
                    },
                    "ft-6": {
                        "blurb": "Filter type 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-6",
                        "writable": true
                    },
                    "ft-7": {
                        "blurb": "Filter type 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-7",
                        "writable": true
                    },
                    "ft-8": {
                        "blurb": "Filter type 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-8",
                        "writable": true
                    },
                    "ft-9": {
                        "blurb": "Filter type 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-9",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-16": {
                        "blurb": "Filter visibility 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-17": {
                        "blurb": "Filter visibility 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-18": {
                        "blurb": "Filter visibility 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-19": {
                        "blurb": "Filter visibility 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-20": {
                        "blurb": "Filter visibility 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-21": {
                        "blurb": "Filter visibility 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-22": {
                        "blurb": "Filter visibility 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-23": {
                        "blurb": "Filter visibility 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-24": {
                        "blurb": "Filter visibility 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-25": {
                        "blurb": "Filter visibility 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-26": {
                        "blurb": "Filter visibility 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-27": {
                        "blurb": "Filter visibility 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-28": {
                        "blurb": "Filter visibility 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-29": {
                        "blurb": "Filter visibility 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-30": {
                        "blurb": "Filter visibility 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-31": {
                        "blurb": "Filter visibility 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Gain 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Gain 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Gain 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Gain 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-16": {
                        "blurb": "Gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-17": {
                        "blurb": "Gain 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-18": {
                        "blurb": "Gain 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-19": {
                        "blurb": "Gain 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-20": {
                        "blurb": "Gain 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-21": {
                        "blurb": "Gain 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-22": {
                        "blurb": "Gain 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-23": {
                        "blurb": "Gain 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-24": {
                        "blurb": "Gain 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-25": {
                        "blurb": "Gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-26": {
                        "blurb": "Gain 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-27": {
                        "blurb": "Gain 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-28": {
                        "blurb": "Gain 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-29": {
                        "blurb": "Gain 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-30": {
                        "blurb": "Gain 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-31": {
                        "blurb": "Gain 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1": {
                        "blurb": "Hue 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-10": {
                        "blurb": "Hue 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-11": {
                        "blurb": "Hue 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.34375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-12": {
                        "blurb": "Hue 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-13": {
                        "blurb": "Hue 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.40625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-14": {
                        "blurb": "Hue 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-15": {
                        "blurb": "Hue 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.46875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-16": {
                        "blurb": "Hue 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-17": {
                        "blurb": "Hue 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.53125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-18": {
                        "blurb": "Hue 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-19": {
                        "blurb": "Hue 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.59375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2": {
                        "blurb": "Hue 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-20": {
                        "blurb": "Hue 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-21": {
                        "blurb": "Hue 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.65625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-22": {
                        "blurb": "Hue 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-23": {
                        "blurb": "Hue 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.71875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-24": {
                        "blurb": "Hue 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-25": {
                        "blurb": "Hue 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-26": {
                        "blurb": "Hue 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-27": {
                        "blurb": "Hue 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.84375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-28": {
                        "blurb": "Hue 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-29": {
                        "blurb": "Hue 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.90625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3": {
                        "blurb": "Hue 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.09375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-30": {
                        "blurb": "Hue 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-31": {
                        "blurb": "Hue 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.96875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4": {
                        "blurb": "Hue 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5": {
                        "blurb": "Hue 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6": {
                        "blurb": "Hue 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7": {
                        "blurb": "Hue 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.21875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-8": {
                        "blurb": "Hue 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-9": {
                        "blurb": "Hue 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "im": {
                        "blurb": "Input signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "q-0": {
                        "blurb": "Quality factor 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-1": {
                        "blurb": "Quality factor 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-10": {
                        "blurb": "Quality factor 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-11": {
                        "blurb": "Quality factor 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-12": {
                        "blurb": "Quality factor 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-13": {
                        "blurb": "Quality factor 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-14": {
                        "blurb": "Quality factor 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-15": {
                        "blurb": "Quality factor 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-16": {
                        "blurb": "Quality factor 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-17": {
                        "blurb": "Quality factor 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-18": {
                        "blurb": "Quality factor 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-19": {
                        "blurb": "Quality factor 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-2": {
                        "blurb": "Quality factor 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-20": {
                        "blurb": "Quality factor 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-21": {
                        "blurb": "Quality factor 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-22": {
                        "blurb": "Quality factor 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-23": {
                        "blurb": "Quality factor 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-24": {
                        "blurb": "Quality factor 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-25": {
                        "blurb": "Quality factor 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-26": {
                        "blurb": "Quality factor 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-27": {
                        "blurb": "Quality factor 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-28": {
                        "blurb": "Quality factor 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-29": {
                        "blurb": "Quality factor 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-3": {
                        "blurb": "Quality factor 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-30": {
                        "blurb": "Quality factor 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-31": {
                        "blurb": "Quality factor 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-4": {
                        "blurb": "Quality factor 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-5": {
                        "blurb": "Quality factor 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-6": {
                        "blurb": "Quality factor 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-7": {
                        "blurb": "Quality factor 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-8": {
                        "blurb": "Quality factor 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-9": {
                        "blurb": "Quality factor 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "s-0": {
                        "blurb": "Filter slope 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-0",
                        "writable": true
                    },
                    "s-1": {
                        "blurb": "Filter slope 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-1",
                        "writable": true
                    },
                    "s-10": {
                        "blurb": "Filter slope 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-10",
                        "writable": true
                    },
                    "s-11": {
                        "blurb": "Filter slope 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-11",
                        "writable": true
                    },
                    "s-12": {
                        "blurb": "Filter slope 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-12",
                        "writable": true
                    },
                    "s-13": {
                        "blurb": "Filter slope 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-13",
                        "writable": true
                    },
                    "s-14": {
                        "blurb": "Filter slope 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-14",
                        "writable": true
                    },
                    "s-15": {
                        "blurb": "Filter slope 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-15",
                        "writable": true
                    },
                    "s-16": {
                        "blurb": "Filter slope 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-16",
                        "writable": true
                    },
                    "s-17": {
                        "blurb": "Filter slope 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-17",
                        "writable": true
                    },
                    "s-18": {
                        "blurb": "Filter slope 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-18",
                        "writable": true
                    },
                    "s-19": {
                        "blurb": "Filter slope 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-19",
                        "writable": true
                    },
                    "s-2": {
                        "blurb": "Filter slope 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-2",
                        "writable": true
                    },
                    "s-20": {
                        "blurb": "Filter slope 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-20",
                        "writable": true
                    },
                    "s-21": {
                        "blurb": "Filter slope 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-21",
                        "writable": true
                    },
                    "s-22": {
                        "blurb": "Filter slope 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-22",
                        "writable": true
                    },
                    "s-23": {
                        "blurb": "Filter slope 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-23",
                        "writable": true
                    },
                    "s-24": {
                        "blurb": "Filter slope 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-24",
                        "writable": true
                    },
                    "s-25": {
                        "blurb": "Filter slope 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-25",
                        "writable": true
                    },
                    "s-26": {
                        "blurb": "Filter slope 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-26",
                        "writable": true
                    },
                    "s-27": {
                        "blurb": "Filter slope 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-27",
                        "writable": true
                    },
                    "s-28": {
                        "blurb": "Filter slope 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-28",
                        "writable": true
                    },
                    "s-29": {
                        "blurb": "Filter slope 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-29",
                        "writable": true
                    },
                    "s-3": {
                        "blurb": "Filter slope 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-3",
                        "writable": true
                    },
                    "s-30": {
                        "blurb": "Filter slope 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-30",
                        "writable": true
                    },
                    "s-31": {
                        "blurb": "Filter slope 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-31",
                        "writable": true
                    },
                    "s-4": {
                        "blurb": "Filter slope 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-4",
                        "writable": true
                    },
                    "s-5": {
                        "blurb": "Filter slope 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-5",
                        "writable": true
                    },
                    "s-6": {
                        "blurb": "Filter slope 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-6",
                        "writable": true
                    },
                    "s-7": {
                        "blurb": "Filter slope 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-7",
                        "writable": true
                    },
                    "s-8": {
                        "blurb": "Filter slope 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-8",
                        "writable": true
                    },
                    "s-9": {
                        "blurb": "Filter slope 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-9",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sm": {
                        "blurb": "Output signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xm-0": {
                        "blurb": "Filter mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Filter mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Filter mute 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Filter mute 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Filter mute 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Filter mute 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Filter mute 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Filter mute 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-16": {
                        "blurb": "Filter mute 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-17": {
                        "blurb": "Filter mute 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-18": {
                        "blurb": "Filter mute 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-19": {
                        "blurb": "Filter mute 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Filter mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-20": {
                        "blurb": "Filter mute 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-21": {
                        "blurb": "Filter mute 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-22": {
                        "blurb": "Filter mute 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-23": {
                        "blurb": "Filter mute 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-24": {
                        "blurb": "Filter mute 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-25": {
                        "blurb": "Filter mute 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-26": {
                        "blurb": "Filter mute 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-27": {
                        "blurb": "Filter mute 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-28": {
                        "blurb": "Filter mute 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-29": {
                        "blurb": "Filter mute 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Filter mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-30": {
                        "blurb": "Filter mute 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-31": {
                        "blurb": "Filter mute 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Filter mute 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Filter mute 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Filter mute 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Filter mute 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Filter mute 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Filter mute 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Filter solo 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Filter solo 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Filter solo 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Filter solo 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Filter solo 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Filter solo 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Filter solo 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Filter solo 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-16": {
                        "blurb": "Filter solo 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-17": {
                        "blurb": "Filter solo 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-18": {
                        "blurb": "Filter solo 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-19": {
                        "blurb": "Filter solo 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Filter solo 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-20": {
                        "blurb": "Filter solo 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-21": {
                        "blurb": "Filter solo 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-22": {
                        "blurb": "Filter solo 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-23": {
                        "blurb": "Filter solo 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-24": {
                        "blurb": "Filter solo 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-25": {
                        "blurb": "Filter solo 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-26": {
                        "blurb": "Filter solo 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-27": {
                        "blurb": "Filter solo 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-28": {
                        "blurb": "Filter solo 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-29": {
                        "blurb": "Filter solo 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Filter solo 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-30": {
                        "blurb": "Filter solo 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-31": {
                        "blurb": "Filter solo 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Filter solo 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Filter solo 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Filter solo 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Filter solo 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Filter solo 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Filter solo 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-ms": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x32 MidSide",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x32-ms",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x32 MidSide",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfft",
                        "writable": true
                    },
                    "fftv-m": {
                        "blurb": "FFT visibility Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-s": {
                        "blurb": "FFT visibility Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fm-0": {
                        "blurb": "Frequency Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-1": {
                        "blurb": "Frequency Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-10": {
                        "blurb": "Frequency Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-11": {
                        "blurb": "Frequency Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-12": {
                        "blurb": "Frequency Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-13": {
                        "blurb": "Frequency Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "315",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-14": {
                        "blurb": "Frequency Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-15": {
                        "blurb": "Frequency Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-16": {
                        "blurb": "Frequency Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-17": {
                        "blurb": "Frequency Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "800",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-18": {
                        "blurb": "Frequency Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-19": {
                        "blurb": "Frequency Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-2": {
                        "blurb": "Frequency Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-20": {
                        "blurb": "Frequency Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-21": {
                        "blurb": "Frequency Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-22": {
                        "blurb": "Frequency Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-23": {
                        "blurb": "Frequency Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3150",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-24": {
                        "blurb": "Frequency Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-25": {
                        "blurb": "Frequency Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-26": {
                        "blurb": "Frequency Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-27": {
                        "blurb": "Frequency Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-28": {
                        "blurb": "Frequency Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-29": {
                        "blurb": "Frequency Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "12500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-3": {
                        "blurb": "Frequency Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "31.5",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-30": {
                        "blurb": "Frequency Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-31": {
                        "blurb": "Frequency Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-4": {
                        "blurb": "Frequency Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-5": {
                        "blurb": "Frequency Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-6": {
                        "blurb": "Frequency Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-7": {
                        "blurb": "Frequency Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-8": {
                        "blurb": "Frequency Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fm-9": {
                        "blurb": "Frequency Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "125",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fmm-0": {
                        "blurb": "Filter mode Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-0",
                        "writable": true
                    },
                    "fmm-1": {
                        "blurb": "Filter mode Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-1",
                        "writable": true
                    },
                    "fmm-10": {
                        "blurb": "Filter mode Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-10",
                        "writable": true
                    },
                    "fmm-11": {
                        "blurb": "Filter mode Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-11",
                        "writable": true
                    },
                    "fmm-12": {
                        "blurb": "Filter mode Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-12",
                        "writable": true
                    },
                    "fmm-13": {
                        "blurb": "Filter mode Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-13",
                        "writable": true
                    },
                    "fmm-14": {
                        "blurb": "Filter mode Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-14",
                        "writable": true
                    },
                    "fmm-15": {
                        "blurb": "Filter mode Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-15",
                        "writable": true
                    },
                    "fmm-16": {
                        "blurb": "Filter mode Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-16",
                        "writable": true
                    },
                    "fmm-17": {
                        "blurb": "Filter mode Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-17",
                        "writable": true
                    },
                    "fmm-18": {
                        "blurb": "Filter mode Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-18",
                        "writable": true
                    },
                    "fmm-19": {
                        "blurb": "Filter mode Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-19",
                        "writable": true
                    },
                    "fmm-2": {
                        "blurb": "Filter mode Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-2",
                        "writable": true
                    },
                    "fmm-20": {
                        "blurb": "Filter mode Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-20",
                        "writable": true
                    },
                    "fmm-21": {
                        "blurb": "Filter mode Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-21",
                        "writable": true
                    },
                    "fmm-22": {
                        "blurb": "Filter mode Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-22",
                        "writable": true
                    },
                    "fmm-23": {
                        "blurb": "Filter mode Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-23",
                        "writable": true
                    },
                    "fmm-24": {
                        "blurb": "Filter mode Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-24",
                        "writable": true
                    },
                    "fmm-25": {
                        "blurb": "Filter mode Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-25",
                        "writable": true
                    },
                    "fmm-26": {
                        "blurb": "Filter mode Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-26",
                        "writable": true
                    },
                    "fmm-27": {
                        "blurb": "Filter mode Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-27",
                        "writable": true
                    },
                    "fmm-28": {
                        "blurb": "Filter mode Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-28",
                        "writable": true
                    },
                    "fmm-29": {
                        "blurb": "Filter mode Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-29",
                        "writable": true
                    },
                    "fmm-3": {
                        "blurb": "Filter mode Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-3",
                        "writable": true
                    },
                    "fmm-30": {
                        "blurb": "Filter mode Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-30",
                        "writable": true
                    },
                    "fmm-31": {
                        "blurb": "Filter mode Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-31",
                        "writable": true
                    },
                    "fmm-4": {
                        "blurb": "Filter mode Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-4",
                        "writable": true
                    },
                    "fmm-5": {
                        "blurb": "Filter mode Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-5",
                        "writable": true
                    },
                    "fmm-6": {
                        "blurb": "Filter mode Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-6",
                        "writable": true
                    },
                    "fmm-7": {
                        "blurb": "Filter mode Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-7",
                        "writable": true
                    },
                    "fmm-8": {
                        "blurb": "Filter mode Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-8",
                        "writable": true
                    },
                    "fmm-9": {
                        "blurb": "Filter mode Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-9",
                        "writable": true
                    },
                    "fms-0": {
                        "blurb": "Filter mode Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-0",
                        "writable": true
                    },
                    "fms-1": {
                        "blurb": "Filter mode Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-1",
                        "writable": true
                    },
                    "fms-10": {
                        "blurb": "Filter mode Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-10",
                        "writable": true
                    },
                    "fms-11": {
                        "blurb": "Filter mode Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-11",
                        "writable": true
                    },
                    "fms-12": {
                        "blurb": "Filter mode Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-12",
                        "writable": true
                    },
                    "fms-13": {
                        "blurb": "Filter mode Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-13",
                        "writable": true
                    },
                    "fms-14": {
                        "blurb": "Filter mode Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-14",
                        "writable": true
                    },
                    "fms-15": {
                        "blurb": "Filter mode Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-15",
                        "writable": true
                    },
                    "fms-16": {
                        "blurb": "Filter mode Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-16",
                        "writable": true
                    },
                    "fms-17": {
                        "blurb": "Filter mode Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-17",
                        "writable": true
                    },
                    "fms-18": {
                        "blurb": "Filter mode Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-18",
                        "writable": true
                    },
                    "fms-19": {
                        "blurb": "Filter mode Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-19",
                        "writable": true
                    },
                    "fms-2": {
                        "blurb": "Filter mode Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-2",
                        "writable": true
                    },
                    "fms-20": {
                        "blurb": "Filter mode Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-20",
                        "writable": true
                    },
                    "fms-21": {
                        "blurb": "Filter mode Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-21",
                        "writable": true
                    },
                    "fms-22": {
                        "blurb": "Filter mode Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-22",
                        "writable": true
                    },
                    "fms-23": {
                        "blurb": "Filter mode Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-23",
                        "writable": true
                    },
                    "fms-24": {
                        "blurb": "Filter mode Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-24",
                        "writable": true
                    },
                    "fms-25": {
                        "blurb": "Filter mode Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-25",
                        "writable": true
                    },
                    "fms-26": {
                        "blurb": "Filter mode Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-26",
                        "writable": true
                    },
                    "fms-27": {
                        "blurb": "Filter mode Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-27",
                        "writable": true
                    },
                    "fms-28": {
                        "blurb": "Filter mode Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-28",
                        "writable": true
                    },
                    "fms-29": {
                        "blurb": "Filter mode Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-29",
                        "writable": true
                    },
                    "fms-3": {
                        "blurb": "Filter mode Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-3",
                        "writable": true
                    },
                    "fms-30": {
                        "blurb": "Filter mode Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-30",
                        "writable": true
                    },
                    "fms-31": {
                        "blurb": "Filter mode Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-31",
                        "writable": true
                    },
                    "fms-4": {
                        "blurb": "Filter mode Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-4",
                        "writable": true
                    },
                    "fms-5": {
                        "blurb": "Filter mode Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-5",
                        "writable": true
                    },
                    "fms-6": {
                        "blurb": "Filter mode Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-6",
                        "writable": true
                    },
                    "fms-7": {
                        "blurb": "Filter mode Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-7",
                        "writable": true
                    },
                    "fms-8": {
                        "blurb": "Filter mode Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-8",
                        "writable": true
                    },
                    "fms-9": {
                        "blurb": "Filter mode Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-9",
                        "writable": true
                    },
                    "frqs-m": {
                        "blurb": "Frequency shift Mid",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "frqs-s": {
                        "blurb": "Frequency shift Side",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-0": {
                        "blurb": "Frequency Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-1": {
                        "blurb": "Frequency Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-10": {
                        "blurb": "Frequency Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-11": {
                        "blurb": "Frequency Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-12": {
                        "blurb": "Frequency Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-13": {
                        "blurb": "Frequency Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "315",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-14": {
                        "blurb": "Frequency Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-15": {
                        "blurb": "Frequency Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-16": {
                        "blurb": "Frequency Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-17": {
                        "blurb": "Frequency Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "800",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-18": {
                        "blurb": "Frequency Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-19": {
                        "blurb": "Frequency Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-2": {
                        "blurb": "Frequency Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-20": {
                        "blurb": "Frequency Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-21": {
                        "blurb": "Frequency Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-22": {
                        "blurb": "Frequency Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-23": {
                        "blurb": "Frequency Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3150",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-24": {
                        "blurb": "Frequency Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-25": {
                        "blurb": "Frequency Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-26": {
                        "blurb": "Frequency Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-27": {
                        "blurb": "Frequency Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-28": {
                        "blurb": "Frequency Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-29": {
                        "blurb": "Frequency Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "12500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-3": {
                        "blurb": "Frequency Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "31.5",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-30": {
                        "blurb": "Frequency Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-31": {
                        "blurb": "Frequency Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-4": {
                        "blurb": "Frequency Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-5": {
                        "blurb": "Frequency Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-6": {
                        "blurb": "Frequency Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-7": {
                        "blurb": "Frequency Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-8": {
                        "blurb": "Frequency Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fs-9": {
                        "blurb": "Frequency Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "125",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters Mid 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfsel",
                        "writable": true
                    },
                    "ftm-0": {
                        "blurb": "Filter type Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-0",
                        "writable": true
                    },
                    "ftm-1": {
                        "blurb": "Filter type Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-1",
                        "writable": true
                    },
                    "ftm-10": {
                        "blurb": "Filter type Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-10",
                        "writable": true
                    },
                    "ftm-11": {
                        "blurb": "Filter type Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-11",
                        "writable": true
                    },
                    "ftm-12": {
                        "blurb": "Filter type Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-12",
                        "writable": true
                    },
                    "ftm-13": {
                        "blurb": "Filter type Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-13",
                        "writable": true
                    },
                    "ftm-14": {
                        "blurb": "Filter type Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-14",
                        "writable": true
                    },
                    "ftm-15": {
                        "blurb": "Filter type Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-15",
                        "writable": true
                    },
                    "ftm-16": {
                        "blurb": "Filter type Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-16",
                        "writable": true
                    },
                    "ftm-17": {
                        "blurb": "Filter type Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-17",
                        "writable": true
                    },
                    "ftm-18": {
                        "blurb": "Filter type Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-18",
                        "writable": true
                    },
                    "ftm-19": {
                        "blurb": "Filter type Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-19",
                        "writable": true
                    },
                    "ftm-2": {
                        "blurb": "Filter type Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-2",
                        "writable": true
                    },
                    "ftm-20": {
                        "blurb": "Filter type Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-20",
                        "writable": true
                    },
                    "ftm-21": {
                        "blurb": "Filter type Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-21",
                        "writable": true
                    },
                    "ftm-22": {
                        "blurb": "Filter type Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-22",
                        "writable": true
                    },
                    "ftm-23": {
                        "blurb": "Filter type Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-23",
                        "writable": true
                    },
                    "ftm-24": {
                        "blurb": "Filter type Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-24",
                        "writable": true
                    },
                    "ftm-25": {
                        "blurb": "Filter type Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-25",
                        "writable": true
                    },
                    "ftm-26": {
                        "blurb": "Filter type Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-26",
                        "writable": true
                    },
                    "ftm-27": {
                        "blurb": "Filter type Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-27",
                        "writable": true
                    },
                    "ftm-28": {
                        "blurb": "Filter type Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-28",
                        "writable": true
                    },
                    "ftm-29": {
                        "blurb": "Filter type Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-29",
                        "writable": true
                    },
                    "ftm-3": {
                        "blurb": "Filter type Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-3",
                        "writable": true
                    },
                    "ftm-30": {
                        "blurb": "Filter type Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-30",
                        "writable": true
                    },
                    "ftm-31": {
                        "blurb": "Filter type Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-31",
                        "writable": true
                    },
                    "ftm-4": {
                        "blurb": "Filter type Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-4",
                        "writable": true
                    },
                    "ftm-5": {
                        "blurb": "Filter type Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-5",
                        "writable": true
                    },
                    "ftm-6": {
                        "blurb": "Filter type Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-6",
                        "writable": true
                    },
                    "ftm-7": {
                        "blurb": "Filter type Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-7",
                        "writable": true
                    },
                    "ftm-8": {
                        "blurb": "Filter type Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-8",
                        "writable": true
                    },
                    "ftm-9": {
                        "blurb": "Filter type Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-9",
                        "writable": true
                    },
                    "fts-0": {
                        "blurb": "Filter type Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-0",
                        "writable": true
                    },
                    "fts-1": {
                        "blurb": "Filter type Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-1",
                        "writable": true
                    },
                    "fts-10": {
                        "blurb": "Filter type Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-10",
                        "writable": true
                    },
                    "fts-11": {
                        "blurb": "Filter type Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-11",
                        "writable": true
                    },
                    "fts-12": {
                        "blurb": "Filter type Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-12",
                        "writable": true
                    },
                    "fts-13": {
                        "blurb": "Filter type Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-13",
                        "writable": true
                    },
                    "fts-14": {
                        "blurb": "Filter type Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-14",
                        "writable": true
                    },
                    "fts-15": {
                        "blurb": "Filter type Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-15",
                        "writable": true
                    },
                    "fts-16": {
                        "blurb": "Filter type Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-16",
                        "writable": true
                    },
                    "fts-17": {
                        "blurb": "Filter type Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-17",
                        "writable": true
                    },
                    "fts-18": {
                        "blurb": "Filter type Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-18",
                        "writable": true
                    },
                    "fts-19": {
                        "blurb": "Filter type Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-19",
                        "writable": true
                    },
                    "fts-2": {
                        "blurb": "Filter type Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-2",
                        "writable": true
                    },
                    "fts-20": {
                        "blurb": "Filter type Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-20",
                        "writable": true
                    },
                    "fts-21": {
                        "blurb": "Filter type Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-21",
                        "writable": true
                    },
                    "fts-22": {
                        "blurb": "Filter type Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-22",
                        "writable": true
                    },
                    "fts-23": {
                        "blurb": "Filter type Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-23",
                        "writable": true
                    },
                    "fts-24": {
                        "blurb": "Filter type Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-24",
                        "writable": true
                    },
                    "fts-25": {
                        "blurb": "Filter type Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-25",
                        "writable": true
                    },
                    "fts-26": {
                        "blurb": "Filter type Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-26",
                        "writable": true
                    },
                    "fts-27": {
                        "blurb": "Filter type Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-27",
                        "writable": true
                    },
                    "fts-28": {
                        "blurb": "Filter type Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-28",
                        "writable": true
                    },
                    "fts-29": {
                        "blurb": "Filter type Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-29",
                        "writable": true
                    },
                    "fts-3": {
                        "blurb": "Filter type Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-3",
                        "writable": true
                    },
                    "fts-30": {
                        "blurb": "Filter type Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-30",
                        "writable": true
                    },
                    "fts-31": {
                        "blurb": "Filter type Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-31",
                        "writable": true
                    },
                    "fts-4": {
                        "blurb": "Filter type Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-4",
                        "writable": true
                    },
                    "fts-5": {
                        "blurb": "Filter type Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-5",
                        "writable": true
                    },
                    "fts-6": {
                        "blurb": "Filter type Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-6",
                        "writable": true
                    },
                    "fts-7": {
                        "blurb": "Filter type Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-7",
                        "writable": true
                    },
                    "fts-8": {
                        "blurb": "Filter type Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-8",
                        "writable": true
                    },
                    "fts-9": {
                        "blurb": "Filter type Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-9",
                        "writable": true
                    },
                    "fvm-0": {
                        "blurb": "Filter visibility Mid 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-1": {
                        "blurb": "Filter visibility Mid 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-10": {
                        "blurb": "Filter visibility Mid 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-11": {
                        "blurb": "Filter visibility Mid 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-12": {
                        "blurb": "Filter visibility Mid 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-13": {
                        "blurb": "Filter visibility Mid 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-14": {
                        "blurb": "Filter visibility Mid 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-15": {
                        "blurb": "Filter visibility Mid 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-16": {
                        "blurb": "Filter visibility Mid 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-17": {
                        "blurb": "Filter visibility Mid 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-18": {
                        "blurb": "Filter visibility Mid 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-19": {
                        "blurb": "Filter visibility Mid 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-2": {
                        "blurb": "Filter visibility Mid 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-20": {
                        "blurb": "Filter visibility Mid 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-21": {
                        "blurb": "Filter visibility Mid 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-22": {
                        "blurb": "Filter visibility Mid 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-23": {
                        "blurb": "Filter visibility Mid 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-24": {
                        "blurb": "Filter visibility Mid 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-25": {
                        "blurb": "Filter visibility Mid 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-26": {
                        "blurb": "Filter visibility Mid 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-27": {
                        "blurb": "Filter visibility Mid 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-28": {
                        "blurb": "Filter visibility Mid 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-29": {
                        "blurb": "Filter visibility Mid 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-3": {
                        "blurb": "Filter visibility Mid 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-30": {
                        "blurb": "Filter visibility Mid 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-31": {
                        "blurb": "Filter visibility Mid 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-4": {
                        "blurb": "Filter visibility Mid 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-5": {
                        "blurb": "Filter visibility Mid 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-6": {
                        "blurb": "Filter visibility Mid 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-7": {
                        "blurb": "Filter visibility Mid 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-8": {
                        "blurb": "Filter visibility Mid 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvm-9": {
                        "blurb": "Filter visibility Mid 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-0": {
                        "blurb": "Filter visibility Side 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-1": {
                        "blurb": "Filter visibility Side 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-10": {
                        "blurb": "Filter visibility Side 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-11": {
                        "blurb": "Filter visibility Side 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-12": {
                        "blurb": "Filter visibility Side 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-13": {
                        "blurb": "Filter visibility Side 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-14": {
                        "blurb": "Filter visibility Side 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-15": {
                        "blurb": "Filter visibility Side 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-16": {
                        "blurb": "Filter visibility Side 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-17": {
                        "blurb": "Filter visibility Side 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-18": {
                        "blurb": "Filter visibility Side 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-19": {
                        "blurb": "Filter visibility Side 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-2": {
                        "blurb": "Filter visibility Side 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-20": {
                        "blurb": "Filter visibility Side 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-21": {
                        "blurb": "Filter visibility Side 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-22": {
                        "blurb": "Filter visibility Side 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-23": {
                        "blurb": "Filter visibility Side 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-24": {
                        "blurb": "Filter visibility Side 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-25": {
                        "blurb": "Filter visibility Side 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-26": {
                        "blurb": "Filter visibility Side 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-27": {
                        "blurb": "Filter visibility Side 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-28": {
                        "blurb": "Filter visibility Side 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-29": {
                        "blurb": "Filter visibility Side 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-3": {
                        "blurb": "Filter visibility Side 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-30": {
                        "blurb": "Filter visibility Side 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-31": {
                        "blurb": "Filter visibility Side 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-4": {
                        "blurb": "Filter visibility Side 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-5": {
                        "blurb": "Filter visibility Side 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-6": {
                        "blurb": "Filter visibility Side 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-7": {
                        "blurb": "Filter visibility Side 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-8": {
                        "blurb": "Filter visibility Side 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fvs-9": {
                        "blurb": "Filter visibility Side 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-m": {
                        "blurb": "Mid gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gain-s": {
                        "blurb": "Side gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-0": {
                        "blurb": "Gain Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-1": {
                        "blurb": "Gain Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-10": {
                        "blurb": "Gain Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-11": {
                        "blurb": "Gain Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-12": {
                        "blurb": "Gain Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-13": {
                        "blurb": "Gain Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-14": {
                        "blurb": "Gain Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-15": {
                        "blurb": "Gain Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-16": {
                        "blurb": "Gain Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-17": {
                        "blurb": "Gain Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-18": {
                        "blurb": "Gain Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-19": {
                        "blurb": "Gain Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-2": {
                        "blurb": "Gain Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-20": {
                        "blurb": "Gain Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-21": {
                        "blurb": "Gain Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-22": {
                        "blurb": "Gain Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-23": {
                        "blurb": "Gain Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-24": {
                        "blurb": "Gain Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-25": {
                        "blurb": "Gain Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-26": {
                        "blurb": "Gain Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-27": {
                        "blurb": "Gain Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-28": {
                        "blurb": "Gain Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-29": {
                        "blurb": "Gain Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-3": {
                        "blurb": "Gain Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-30": {
                        "blurb": "Gain Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-31": {
                        "blurb": "Gain Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-4": {
                        "blurb": "Gain Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-5": {
                        "blurb": "Gain Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-6": {
                        "blurb": "Gain Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-7": {
                        "blurb": "Gain Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-8": {
                        "blurb": "Gain Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gm-9": {
                        "blurb": "Gain Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-0": {
                        "blurb": "Gain Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-1": {
                        "blurb": "Gain Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-10": {
                        "blurb": "Gain Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-11": {
                        "blurb": "Gain Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-12": {
                        "blurb": "Gain Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-13": {
                        "blurb": "Gain Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-14": {
                        "blurb": "Gain Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-15": {
                        "blurb": "Gain Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-16": {
                        "blurb": "Gain Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-17": {
                        "blurb": "Gain Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-18": {
                        "blurb": "Gain Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-19": {
                        "blurb": "Gain Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-2": {
                        "blurb": "Gain Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-20": {
                        "blurb": "Gain Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-21": {
                        "blurb": "Gain Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-22": {
                        "blurb": "Gain Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-23": {
                        "blurb": "Gain Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-24": {
                        "blurb": "Gain Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-25": {
                        "blurb": "Gain Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-26": {
                        "blurb": "Gain Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-27": {
                        "blurb": "Gain Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-28": {
                        "blurb": "Gain Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-29": {
                        "blurb": "Gain Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-3": {
                        "blurb": "Gain Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-30": {
                        "blurb": "Gain Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-31": {
                        "blurb": "Gain Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-4": {
                        "blurb": "Gain Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-5": {
                        "blurb": "Gain Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-6": {
                        "blurb": "Gain Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-7": {
                        "blurb": "Gain Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-8": {
                        "blurb": "Gain Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "gs-9": {
                        "blurb": "Gain Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-0": {
                        "blurb": "Hue Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-1": {
                        "blurb": "Hue Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-10": {
                        "blurb": "Hue Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-11": {
                        "blurb": "Hue Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.34375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-12": {
                        "blurb": "Hue Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-13": {
                        "blurb": "Hue Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.40625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-14": {
                        "blurb": "Hue Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-15": {
                        "blurb": "Hue Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.46875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-16": {
                        "blurb": "Hue Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-17": {
                        "blurb": "Hue Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.53125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-18": {
                        "blurb": "Hue Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-19": {
                        "blurb": "Hue Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.59375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-2": {
                        "blurb": "Hue Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-20": {
                        "blurb": "Hue Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-21": {
                        "blurb": "Hue Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.65625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-22": {
                        "blurb": "Hue Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-23": {
                        "blurb": "Hue Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.71875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-24": {
                        "blurb": "Hue Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-25": {
                        "blurb": "Hue Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-26": {
                        "blurb": "Hue Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-27": {
                        "blurb": "Hue Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.84375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-28": {
                        "blurb": "Hue Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-29": {
                        "blurb": "Hue Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.90625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-3": {
                        "blurb": "Hue Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.09375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-30": {
                        "blurb": "Hue Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-31": {
                        "blurb": "Hue Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.96875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-4": {
                        "blurb": "Hue Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-5": {
                        "blurb": "Hue Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-6": {
                        "blurb": "Hue Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-7": {
                        "blurb": "Hue Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.21875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-8": {
                        "blurb": "Hue Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "huem-9": {
                        "blurb": "Hue Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-0": {
                        "blurb": "Hue Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-1": {
                        "blurb": "Hue Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-10": {
                        "blurb": "Hue Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-11": {
                        "blurb": "Hue Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.34375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-12": {
                        "blurb": "Hue Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-13": {
                        "blurb": "Hue Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.40625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-14": {
                        "blurb": "Hue Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-15": {
                        "blurb": "Hue Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.46875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-16": {
                        "blurb": "Hue Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-17": {
                        "blurb": "Hue Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.53125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-18": {
                        "blurb": "Hue Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-19": {
                        "blurb": "Hue Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.59375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-2": {
                        "blurb": "Hue Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-20": {
                        "blurb": "Hue Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-21": {
                        "blurb": "Hue Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.65625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-22": {
                        "blurb": "Hue Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-23": {
                        "blurb": "Hue Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.71875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-24": {
                        "blurb": "Hue Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-25": {
                        "blurb": "Hue Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-26": {
                        "blurb": "Hue Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-27": {
                        "blurb": "Hue Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.84375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-28": {
                        "blurb": "Hue Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-29": {
                        "blurb": "Hue Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.90625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-3": {
                        "blurb": "Hue Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.09375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-30": {
                        "blurb": "Hue Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-31": {
                        "blurb": "Hue Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.96875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-4": {
                        "blurb": "Hue Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-5": {
                        "blurb": "Hue Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-6": {
                        "blurb": "Hue Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-7": {
                        "blurb": "Hue Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.21875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-8": {
                        "blurb": "Hue Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hues-9": {
                        "blurb": "Hue Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "lstn": {
                        "blurb": "Mid/Side listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msmode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "qm-0": {
                        "blurb": "Quality factor Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-1": {
                        "blurb": "Quality factor Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-10": {
                        "blurb": "Quality factor Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-11": {
                        "blurb": "Quality factor Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-12": {
                        "blurb": "Quality factor Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-13": {
                        "blurb": "Quality factor Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-14": {
                        "blurb": "Quality factor Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-15": {
                        "blurb": "Quality factor Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-16": {
                        "blurb": "Quality factor Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-17": {
                        "blurb": "Quality factor Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-18": {
                        "blurb": "Quality factor Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-19": {
                        "blurb": "Quality factor Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-2": {
                        "blurb": "Quality factor Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-20": {
                        "blurb": "Quality factor Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-21": {
                        "blurb": "Quality factor Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-22": {
                        "blurb": "Quality factor Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-23": {
                        "blurb": "Quality factor Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-24": {
                        "blurb": "Quality factor Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-25": {
                        "blurb": "Quality factor Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-26": {
                        "blurb": "Quality factor Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-27": {
                        "blurb": "Quality factor Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-28": {
                        "blurb": "Quality factor Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-29": {
                        "blurb": "Quality factor Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-3": {
                        "blurb": "Quality factor Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-30": {
                        "blurb": "Quality factor Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-31": {
                        "blurb": "Quality factor Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-4": {
                        "blurb": "Quality factor Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-5": {
                        "blurb": "Quality factor Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-6": {
                        "blurb": "Quality factor Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-7": {
                        "blurb": "Quality factor Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-8": {
                        "blurb": "Quality factor Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qm-9": {
                        "blurb": "Quality factor Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-0": {
                        "blurb": "Quality factor Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-1": {
                        "blurb": "Quality factor Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-10": {
                        "blurb": "Quality factor Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-11": {
                        "blurb": "Quality factor Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-12": {
                        "blurb": "Quality factor Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-13": {
                        "blurb": "Quality factor Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-14": {
                        "blurb": "Quality factor Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-15": {
                        "blurb": "Quality factor Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-16": {
                        "blurb": "Quality factor Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-17": {
                        "blurb": "Quality factor Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-18": {
                        "blurb": "Quality factor Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-19": {
                        "blurb": "Quality factor Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-2": {
                        "blurb": "Quality factor Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-20": {
                        "blurb": "Quality factor Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-21": {
                        "blurb": "Quality factor Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-22": {
                        "blurb": "Quality factor Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-23": {
                        "blurb": "Quality factor Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-24": {
                        "blurb": "Quality factor Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-25": {
                        "blurb": "Quality factor Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-26": {
                        "blurb": "Quality factor Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-27": {
                        "blurb": "Quality factor Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-28": {
                        "blurb": "Quality factor Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-29": {
                        "blurb": "Quality factor Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-3": {
                        "blurb": "Quality factor Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-30": {
                        "blurb": "Quality factor Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-31": {
                        "blurb": "Quality factor Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-4": {
                        "blurb": "Quality factor Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-5": {
                        "blurb": "Quality factor Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-6": {
                        "blurb": "Quality factor Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-7": {
                        "blurb": "Quality factor Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-8": {
                        "blurb": "Quality factor Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "qs-9": {
                        "blurb": "Quality factor Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sm-0": {
                        "blurb": "Filter slope Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-0",
                        "writable": true
                    },
                    "sm-1": {
                        "blurb": "Filter slope Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-1",
                        "writable": true
                    },
                    "sm-10": {
                        "blurb": "Filter slope Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-10",
                        "writable": true
                    },
                    "sm-11": {
                        "blurb": "Filter slope Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-11",
                        "writable": true
                    },
                    "sm-12": {
                        "blurb": "Filter slope Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-12",
                        "writable": true
                    },
                    "sm-13": {
                        "blurb": "Filter slope Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-13",
                        "writable": true
                    },
                    "sm-14": {
                        "blurb": "Filter slope Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-14",
                        "writable": true
                    },
                    "sm-15": {
                        "blurb": "Filter slope Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-15",
                        "writable": true
                    },
                    "sm-16": {
                        "blurb": "Filter slope Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-16",
                        "writable": true
                    },
                    "sm-17": {
                        "blurb": "Filter slope Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-17",
                        "writable": true
                    },
                    "sm-18": {
                        "blurb": "Filter slope Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-18",
                        "writable": true
                    },
                    "sm-19": {
                        "blurb": "Filter slope Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-19",
                        "writable": true
                    },
                    "sm-2": {
                        "blurb": "Filter slope Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-2",
                        "writable": true
                    },
                    "sm-20": {
                        "blurb": "Filter slope Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-20",
                        "writable": true
                    },
                    "sm-21": {
                        "blurb": "Filter slope Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-21",
                        "writable": true
                    },
                    "sm-22": {
                        "blurb": "Filter slope Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-22",
                        "writable": true
                    },
                    "sm-23": {
                        "blurb": "Filter slope Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-23",
                        "writable": true
                    },
                    "sm-24": {
                        "blurb": "Filter slope Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-24",
                        "writable": true
                    },
                    "sm-25": {
                        "blurb": "Filter slope Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-25",
                        "writable": true
                    },
                    "sm-26": {
                        "blurb": "Filter slope Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-26",
                        "writable": true
                    },
                    "sm-27": {
                        "blurb": "Filter slope Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-27",
                        "writable": true
                    },
                    "sm-28": {
                        "blurb": "Filter slope Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-28",
                        "writable": true
                    },
                    "sm-29": {
                        "blurb": "Filter slope Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-29",
                        "writable": true
                    },
                    "sm-3": {
                        "blurb": "Filter slope Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-3",
                        "writable": true
                    },
                    "sm-30": {
                        "blurb": "Filter slope Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-30",
                        "writable": true
                    },
                    "sm-31": {
                        "blurb": "Filter slope Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-31",
                        "writable": true
                    },
                    "sm-4": {
                        "blurb": "Filter slope Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-4",
                        "writable": true
                    },
                    "sm-5": {
                        "blurb": "Filter slope Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-5",
                        "writable": true
                    },
                    "sm-6": {
                        "blurb": "Filter slope Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-6",
                        "writable": true
                    },
                    "sm-7": {
                        "blurb": "Filter slope Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-7",
                        "writable": true
                    },
                    "sm-8": {
                        "blurb": "Filter slope Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-8",
                        "writable": true
                    },
                    "sm-9": {
                        "blurb": "Filter slope Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-9",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ss-0": {
                        "blurb": "Filter slope Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-0",
                        "writable": true
                    },
                    "ss-1": {
                        "blurb": "Filter slope Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-1",
                        "writable": true
                    },
                    "ss-10": {
                        "blurb": "Filter slope Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-10",
                        "writable": true
                    },
                    "ss-11": {
                        "blurb": "Filter slope Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-11",
                        "writable": true
                    },
                    "ss-12": {
                        "blurb": "Filter slope Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-12",
                        "writable": true
                    },
                    "ss-13": {
                        "blurb": "Filter slope Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-13",
                        "writable": true
                    },
                    "ss-14": {
                        "blurb": "Filter slope Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-14",
                        "writable": true
                    },
                    "ss-15": {
                        "blurb": "Filter slope Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-15",
                        "writable": true
                    },
                    "ss-16": {
                        "blurb": "Filter slope Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-16",
                        "writable": true
                    },
                    "ss-17": {
                        "blurb": "Filter slope Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-17",
                        "writable": true
                    },
                    "ss-18": {
                        "blurb": "Filter slope Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-18",
                        "writable": true
                    },
                    "ss-19": {
                        "blurb": "Filter slope Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-19",
                        "writable": true
                    },
                    "ss-2": {
                        "blurb": "Filter slope Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-2",
                        "writable": true
                    },
                    "ss-20": {
                        "blurb": "Filter slope Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-20",
                        "writable": true
                    },
                    "ss-21": {
                        "blurb": "Filter slope Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-21",
                        "writable": true
                    },
                    "ss-22": {
                        "blurb": "Filter slope Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-22",
                        "writable": true
                    },
                    "ss-23": {
                        "blurb": "Filter slope Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-23",
                        "writable": true
                    },
                    "ss-24": {
                        "blurb": "Filter slope Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-24",
                        "writable": true
                    },
                    "ss-25": {
                        "blurb": "Filter slope Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-25",
                        "writable": true
                    },
                    "ss-26": {
                        "blurb": "Filter slope Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-26",
                        "writable": true
                    },
                    "ss-27": {
                        "blurb": "Filter slope Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-27",
                        "writable": true
                    },
                    "ss-28": {
                        "blurb": "Filter slope Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-28",
                        "writable": true
                    },
                    "ss-29": {
                        "blurb": "Filter slope Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-29",
                        "writable": true
                    },
                    "ss-3": {
                        "blurb": "Filter slope Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-3",
                        "writable": true
                    },
                    "ss-30": {
                        "blurb": "Filter slope Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-30",
                        "writable": true
                    },
                    "ss-31": {
                        "blurb": "Filter slope Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-31",
                        "writable": true
                    },
                    "ss-4": {
                        "blurb": "Filter slope Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-4",
                        "writable": true
                    },
                    "ss-5": {
                        "blurb": "Filter slope Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-5",
                        "writable": true
                    },
                    "ss-6": {
                        "blurb": "Filter slope Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-6",
                        "writable": true
                    },
                    "ss-7": {
                        "blurb": "Filter slope Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-7",
                        "writable": true
                    },
                    "ss-8": {
                        "blurb": "Filter slope Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-8",
                        "writable": true
                    },
                    "ss-9": {
                        "blurb": "Filter slope Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-9",
                        "writable": true
                    },
                    "xmm-0": {
                        "blurb": "Filter mute Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-1": {
                        "blurb": "Filter mute Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-10": {
                        "blurb": "Filter mute Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-11": {
                        "blurb": "Filter mute Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-12": {
                        "blurb": "Filter mute Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-13": {
                        "blurb": "Filter mute Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-14": {
                        "blurb": "Filter mute Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-15": {
                        "blurb": "Filter mute Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-16": {
                        "blurb": "Filter mute Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-17": {
                        "blurb": "Filter mute Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-18": {
                        "blurb": "Filter mute Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-19": {
                        "blurb": "Filter mute Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-2": {
                        "blurb": "Filter mute Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-20": {
                        "blurb": "Filter mute Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-21": {
                        "blurb": "Filter mute Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-22": {
                        "blurb": "Filter mute Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-23": {
                        "blurb": "Filter mute Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-24": {
                        "blurb": "Filter mute Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-25": {
                        "blurb": "Filter mute Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-26": {
                        "blurb": "Filter mute Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-27": {
                        "blurb": "Filter mute Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-28": {
                        "blurb": "Filter mute Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-29": {
                        "blurb": "Filter mute Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-3": {
                        "blurb": "Filter mute Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-30": {
                        "blurb": "Filter mute Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-31": {
                        "blurb": "Filter mute Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-4": {
                        "blurb": "Filter mute Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-5": {
                        "blurb": "Filter mute Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-6": {
                        "blurb": "Filter mute Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-7": {
                        "blurb": "Filter mute Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-8": {
                        "blurb": "Filter mute Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xmm-9": {
                        "blurb": "Filter mute Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-0": {
                        "blurb": "Filter mute Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-1": {
                        "blurb": "Filter mute Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-10": {
                        "blurb": "Filter mute Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-11": {
                        "blurb": "Filter mute Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-12": {
                        "blurb": "Filter mute Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-13": {
                        "blurb": "Filter mute Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-14": {
                        "blurb": "Filter mute Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-15": {
                        "blurb": "Filter mute Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-16": {
                        "blurb": "Filter mute Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-17": {
                        "blurb": "Filter mute Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-18": {
                        "blurb": "Filter mute Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-19": {
                        "blurb": "Filter mute Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-2": {
                        "blurb": "Filter mute Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-20": {
                        "blurb": "Filter mute Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-21": {
                        "blurb": "Filter mute Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-22": {
                        "blurb": "Filter mute Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-23": {
                        "blurb": "Filter mute Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-24": {
                        "blurb": "Filter mute Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-25": {
                        "blurb": "Filter mute Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-26": {
                        "blurb": "Filter mute Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-27": {
                        "blurb": "Filter mute Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-28": {
                        "blurb": "Filter mute Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-29": {
                        "blurb": "Filter mute Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-3": {
                        "blurb": "Filter mute Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-30": {
                        "blurb": "Filter mute Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-31": {
                        "blurb": "Filter mute Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-4": {
                        "blurb": "Filter mute Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-5": {
                        "blurb": "Filter mute Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-6": {
                        "blurb": "Filter mute Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-7": {
                        "blurb": "Filter mute Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-8": {
                        "blurb": "Filter mute Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xms-9": {
                        "blurb": "Filter mute Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-0": {
                        "blurb": "Filter solo Mid 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-1": {
                        "blurb": "Filter solo Mid 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-10": {
                        "blurb": "Filter solo Mid 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-11": {
                        "blurb": "Filter solo Mid 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-12": {
                        "blurb": "Filter solo Mid 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-13": {
                        "blurb": "Filter solo Mid 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-14": {
                        "blurb": "Filter solo Mid 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-15": {
                        "blurb": "Filter solo Mid 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-16": {
                        "blurb": "Filter solo Mid 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-17": {
                        "blurb": "Filter solo Mid 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-18": {
                        "blurb": "Filter solo Mid 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-19": {
                        "blurb": "Filter solo Mid 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-2": {
                        "blurb": "Filter solo Mid 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-20": {
                        "blurb": "Filter solo Mid 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-21": {
                        "blurb": "Filter solo Mid 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-22": {
                        "blurb": "Filter solo Mid 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-23": {
                        "blurb": "Filter solo Mid 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-24": {
                        "blurb": "Filter solo Mid 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-25": {
                        "blurb": "Filter solo Mid 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-26": {
                        "blurb": "Filter solo Mid 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-27": {
                        "blurb": "Filter solo Mid 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-28": {
                        "blurb": "Filter solo Mid 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-29": {
                        "blurb": "Filter solo Mid 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-3": {
                        "blurb": "Filter solo Mid 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-30": {
                        "blurb": "Filter solo Mid 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-31": {
                        "blurb": "Filter solo Mid 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-4": {
                        "blurb": "Filter solo Mid 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-5": {
                        "blurb": "Filter solo Mid 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-6": {
                        "blurb": "Filter solo Mid 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-7": {
                        "blurb": "Filter solo Mid 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-8": {
                        "blurb": "Filter solo Mid 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xsm-9": {
                        "blurb": "Filter solo Mid 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-0": {
                        "blurb": "Filter solo Side 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-1": {
                        "blurb": "Filter solo Side 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-10": {
                        "blurb": "Filter solo Side 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-11": {
                        "blurb": "Filter solo Side 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-12": {
                        "blurb": "Filter solo Side 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-13": {
                        "blurb": "Filter solo Side 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-14": {
                        "blurb": "Filter solo Side 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-15": {
                        "blurb": "Filter solo Side 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-16": {
                        "blurb": "Filter solo Side 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-17": {
                        "blurb": "Filter solo Side 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-18": {
                        "blurb": "Filter solo Side 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-19": {
                        "blurb": "Filter solo Side 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-2": {
                        "blurb": "Filter solo Side 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-20": {
                        "blurb": "Filter solo Side 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-21": {
                        "blurb": "Filter solo Side 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-22": {
                        "blurb": "Filter solo Side 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-23": {
                        "blurb": "Filter solo Side 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-24": {
                        "blurb": "Filter solo Side 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-25": {
                        "blurb": "Filter solo Side 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-26": {
                        "blurb": "Filter solo Side 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-27": {
                        "blurb": "Filter solo Side 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-28": {
                        "blurb": "Filter solo Side 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-29": {
                        "blurb": "Filter solo Side 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-3": {
                        "blurb": "Filter solo Side 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-30": {
                        "blurb": "Filter solo Side 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-31": {
                        "blurb": "Filter solo Side 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-4": {
                        "blurb": "Filter solo Side 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-5": {
                        "blurb": "Filter solo Side 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-6": {
                        "blurb": "Filter solo Side 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-7": {
                        "blurb": "Filter solo Side 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-8": {
                        "blurb": "Filter solo Side 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xss-9": {
                        "blurb": "Filter solo Side 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereo": {
                "author": "LSP LV2",
                "description": "LSP Parametric Equalizer x32 Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Parametric",
                "long-name": "LSP Parametric Equalizer x32 Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bal": {
                        "blurb": "Output balance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "f-0": {
                        "blurb": "Frequency 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-1": {
                        "blurb": "Frequency 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-10": {
                        "blurb": "Frequency 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "160",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-11": {
                        "blurb": "Frequency 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "200",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-12": {
                        "blurb": "Frequency 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-13": {
                        "blurb": "Frequency 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "315",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-14": {
                        "blurb": "Frequency 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "400",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-15": {
                        "blurb": "Frequency 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-16": {
                        "blurb": "Frequency 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "630",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-17": {
                        "blurb": "Frequency 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "800",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-18": {
                        "blurb": "Frequency 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-19": {
                        "blurb": "Frequency 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1250",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-2": {
                        "blurb": "Frequency 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "25",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-20": {
                        "blurb": "Frequency 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1600",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-21": {
                        "blurb": "Frequency 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-22": {
                        "blurb": "Frequency 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-23": {
                        "blurb": "Frequency 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "3150",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-24": {
                        "blurb": "Frequency 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-25": {
                        "blurb": "Frequency 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-26": {
                        "blurb": "Frequency 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "6300",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-27": {
                        "blurb": "Frequency 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-28": {
                        "blurb": "Frequency 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-29": {
                        "blurb": "Frequency 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "12500",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-3": {
                        "blurb": "Frequency 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "31.5",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-30": {
                        "blurb": "Frequency 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "16000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-31": {
                        "blurb": "Frequency 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20000",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-4": {
                        "blurb": "Frequency 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "40",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-5": {
                        "blurb": "Frequency 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-6": {
                        "blurb": "Frequency 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "63",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-7": {
                        "blurb": "Frequency 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-8": {
                        "blurb": "Frequency 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "f-9": {
                        "blurb": "Frequency 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "125",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofft",
                        "writable": true
                    },
                    "fftv-l": {
                        "blurb": "FFT visibility Left",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fftv-r": {
                        "blurb": "FFT visibility Right",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fm-0": {
                        "blurb": "Filter mode 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-0",
                        "writable": true
                    },
                    "fm-1": {
                        "blurb": "Filter mode 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-1",
                        "writable": true
                    },
                    "fm-10": {
                        "blurb": "Filter mode 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-10",
                        "writable": true
                    },
                    "fm-11": {
                        "blurb": "Filter mode 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-11",
                        "writable": true
                    },
                    "fm-12": {
                        "blurb": "Filter mode 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-12",
                        "writable": true
                    },
                    "fm-13": {
                        "blurb": "Filter mode 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-13",
                        "writable": true
                    },
                    "fm-14": {
                        "blurb": "Filter mode 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-14",
                        "writable": true
                    },
                    "fm-15": {
                        "blurb": "Filter mode 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-15",
                        "writable": true
                    },
                    "fm-16": {
                        "blurb": "Filter mode 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-16",
                        "writable": true
                    },
                    "fm-17": {
                        "blurb": "Filter mode 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-17",
                        "writable": true
                    },
                    "fm-18": {
                        "blurb": "Filter mode 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-18",
                        "writable": true
                    },
                    "fm-19": {
                        "blurb": "Filter mode 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-19",
                        "writable": true
                    },
                    "fm-2": {
                        "blurb": "Filter mode 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-2",
                        "writable": true
                    },
                    "fm-20": {
                        "blurb": "Filter mode 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-20",
                        "writable": true
                    },
                    "fm-21": {
                        "blurb": "Filter mode 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-21",
                        "writable": true
                    },
                    "fm-22": {
                        "blurb": "Filter mode 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-22",
                        "writable": true
                    },
                    "fm-23": {
                        "blurb": "Filter mode 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-23",
                        "writable": true
                    },
                    "fm-24": {
                        "blurb": "Filter mode 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-24",
                        "writable": true
                    },
                    "fm-25": {
                        "blurb": "Filter mode 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-25",
                        "writable": true
                    },
                    "fm-26": {
                        "blurb": "Filter mode 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-26",
                        "writable": true
                    },
                    "fm-27": {
                        "blurb": "Filter mode 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-27",
                        "writable": true
                    },
                    "fm-28": {
                        "blurb": "Filter mode 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-28",
                        "writable": true
                    },
                    "fm-29": {
                        "blurb": "Filter mode 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-29",
                        "writable": true
                    },
                    "fm-3": {
                        "blurb": "Filter mode 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-3",
                        "writable": true
                    },
                    "fm-30": {
                        "blurb": "Filter mode 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-30",
                        "writable": true
                    },
                    "fm-31": {
                        "blurb": "Filter mode 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-31",
                        "writable": true
                    },
                    "fm-4": {
                        "blurb": "Filter mode 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-4",
                        "writable": true
                    },
                    "fm-5": {
                        "blurb": "Filter mode 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-5",
                        "writable": true
                    },
                    "fm-6": {
                        "blurb": "Filter mode 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-6",
                        "writable": true
                    },
                    "fm-7": {
                        "blurb": "Filter mode 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-7",
                        "writable": true
                    },
                    "fm-8": {
                        "blurb": "Filter mode 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-8",
                        "writable": true
                    },
                    "fm-9": {
                        "blurb": "Filter mode 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RLC (BT) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-9",
                        "writable": true
                    },
                    "frqs": {
                        "blurb": "Frequency shift",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "120",
                        "min": "-120",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fsel": {
                        "blurb": "Filter select",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Filters 0-7 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofsel",
                        "writable": true
                    },
                    "ft-0": {
                        "blurb": "Filter type 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-0",
                        "writable": true
                    },
                    "ft-1": {
                        "blurb": "Filter type 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-1",
                        "writable": true
                    },
                    "ft-10": {
                        "blurb": "Filter type 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-10",
                        "writable": true
                    },
                    "ft-11": {
                        "blurb": "Filter type 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-11",
                        "writable": true
                    },
                    "ft-12": {
                        "blurb": "Filter type 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-12",
                        "writable": true
                    },
                    "ft-13": {
                        "blurb": "Filter type 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-13",
                        "writable": true
                    },
                    "ft-14": {
                        "blurb": "Filter type 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-14",
                        "writable": true
                    },
                    "ft-15": {
                        "blurb": "Filter type 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-15",
                        "writable": true
                    },
                    "ft-16": {
                        "blurb": "Filter type 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-16",
                        "writable": true
                    },
                    "ft-17": {
                        "blurb": "Filter type 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-17",
                        "writable": true
                    },
                    "ft-18": {
                        "blurb": "Filter type 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-18",
                        "writable": true
                    },
                    "ft-19": {
                        "blurb": "Filter type 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-19",
                        "writable": true
                    },
                    "ft-2": {
                        "blurb": "Filter type 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-2",
                        "writable": true
                    },
                    "ft-20": {
                        "blurb": "Filter type 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-20",
                        "writable": true
                    },
                    "ft-21": {
                        "blurb": "Filter type 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-21",
                        "writable": true
                    },
                    "ft-22": {
                        "blurb": "Filter type 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-22",
                        "writable": true
                    },
                    "ft-23": {
                        "blurb": "Filter type 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-23",
                        "writable": true
                    },
                    "ft-24": {
                        "blurb": "Filter type 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-24",
                        "writable": true
                    },
                    "ft-25": {
                        "blurb": "Filter type 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-25",
                        "writable": true
                    },
                    "ft-26": {
                        "blurb": "Filter type 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-26",
                        "writable": true
                    },
                    "ft-27": {
                        "blurb": "Filter type 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-27",
                        "writable": true
                    },
                    "ft-28": {
                        "blurb": "Filter type 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-28",
                        "writable": true
                    },
                    "ft-29": {
                        "blurb": "Filter type 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-29",
                        "writable": true
                    },
                    "ft-3": {
                        "blurb": "Filter type 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-3",
                        "writable": true
                    },
                    "ft-30": {
                        "blurb": "Filter type 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-30",
                        "writable": true
                    },
                    "ft-31": {
                        "blurb": "Filter type 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-31",
                        "writable": true
                    },
                    "ft-4": {
                        "blurb": "Filter type 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-4",
                        "writable": true
                    },
                    "ft-5": {
                        "blurb": "Filter type 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-5",
                        "writable": true
                    },
                    "ft-6": {
                        "blurb": "Filter type 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-6",
                        "writable": true
                    },
                    "ft-7": {
                        "blurb": "Filter type 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-7",
                        "writable": true
                    },
                    "ft-8": {
                        "blurb": "Filter type 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-8",
                        "writable": true
                    },
                    "ft-9": {
                        "blurb": "Filter type 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-9",
                        "writable": true
                    },
                    "fv-0": {
                        "blurb": "Filter visibility 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-1": {
                        "blurb": "Filter visibility 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-10": {
                        "blurb": "Filter visibility 10",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-11": {
                        "blurb": "Filter visibility 11",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-12": {
                        "blurb": "Filter visibility 12",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-13": {
                        "blurb": "Filter visibility 13",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-14": {
                        "blurb": "Filter visibility 14",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-15": {
                        "blurb": "Filter visibility 15",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-16": {
                        "blurb": "Filter visibility 16",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-17": {
                        "blurb": "Filter visibility 17",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-18": {
                        "blurb": "Filter visibility 18",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-19": {
                        "blurb": "Filter visibility 19",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-2": {
                        "blurb": "Filter visibility 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-20": {
                        "blurb": "Filter visibility 20",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-21": {
                        "blurb": "Filter visibility 21",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-22": {
                        "blurb": "Filter visibility 22",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-23": {
                        "blurb": "Filter visibility 23",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-24": {
                        "blurb": "Filter visibility 24",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-25": {
                        "blurb": "Filter visibility 25",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-26": {
                        "blurb": "Filter visibility 26",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-27": {
                        "blurb": "Filter visibility 27",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-28": {
                        "blurb": "Filter visibility 28",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-29": {
                        "blurb": "Filter visibility 29",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-3": {
                        "blurb": "Filter visibility 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-30": {
                        "blurb": "Filter visibility 30",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-31": {
                        "blurb": "Filter visibility 31",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-4": {
                        "blurb": "Filter visibility 4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-5": {
                        "blurb": "Filter visibility 5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-6": {
                        "blurb": "Filter visibility 6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-7": {
                        "blurb": "Filter visibility 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-8": {
                        "blurb": "Filter visibility 8",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "fv-9": {
                        "blurb": "Filter visibility 9",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "g-0": {
                        "blurb": "Gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-1": {
                        "blurb": "Gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-10": {
                        "blurb": "Gain 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-11": {
                        "blurb": "Gain 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-12": {
                        "blurb": "Gain 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-13": {
                        "blurb": "Gain 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-14": {
                        "blurb": "Gain 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-15": {
                        "blurb": "Gain 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-16": {
                        "blurb": "Gain 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-17": {
                        "blurb": "Gain 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-18": {
                        "blurb": "Gain 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-19": {
                        "blurb": "Gain 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-2": {
                        "blurb": "Gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-20": {
                        "blurb": "Gain 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-21": {
                        "blurb": "Gain 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-22": {
                        "blurb": "Gain 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-23": {
                        "blurb": "Gain 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-24": {
                        "blurb": "Gain 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-25": {
                        "blurb": "Gain 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-26": {
                        "blurb": "Gain 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-27": {
                        "blurb": "Gain 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-28": {
                        "blurb": "Gain 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-29": {
                        "blurb": "Gain 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-3": {
                        "blurb": "Gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-30": {
                        "blurb": "Gain 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-31": {
                        "blurb": "Gain 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-4": {
                        "blurb": "Gain 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-5": {
                        "blurb": "Gain 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-6": {
                        "blurb": "Gain 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-7": {
                        "blurb": "Gain 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-8": {
                        "blurb": "Gain 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-9": {
                        "blurb": "Gain 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "63.0957",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-in": {
                        "blurb": "Input gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-1": {
                        "blurb": "Hue 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.03125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-10": {
                        "blurb": "Hue 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.3125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-11": {
                        "blurb": "Hue 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.34375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-12": {
                        "blurb": "Hue 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-13": {
                        "blurb": "Hue 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.40625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-14": {
                        "blurb": "Hue 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.4375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-15": {
                        "blurb": "Hue 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.46875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-16": {
                        "blurb": "Hue 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-17": {
                        "blurb": "Hue 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.53125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-18": {
                        "blurb": "Hue 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-19": {
                        "blurb": "Hue 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.59375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-2": {
                        "blurb": "Hue 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-20": {
                        "blurb": "Hue 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-21": {
                        "blurb": "Hue 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.65625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-22": {
                        "blurb": "Hue 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.6875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-23": {
                        "blurb": "Hue 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.71875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-24": {
                        "blurb": "Hue 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-25": {
                        "blurb": "Hue 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.78125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-26": {
                        "blurb": "Hue 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.8125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-27": {
                        "blurb": "Hue 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.84375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-28": {
                        "blurb": "Hue 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-29": {
                        "blurb": "Hue 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.90625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-3": {
                        "blurb": "Hue 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.09375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-30": {
                        "blurb": "Hue 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.9375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-31": {
                        "blurb": "Hue 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.96875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-4": {
                        "blurb": "Hue 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-5": {
                        "blurb": "Hue 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.15625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-6": {
                        "blurb": "Hue 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.1875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-7": {
                        "blurb": "Hue 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.21875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-8": {
                        "blurb": "Hue 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hue-9": {
                        "blurb": "Hue 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.28125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "iml": {
                        "blurb": "Input signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "imr": {
                        "blurb": "Input signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Equalizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "IIR (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "q-0": {
                        "blurb": "Quality factor 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-1": {
                        "blurb": "Quality factor 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-10": {
                        "blurb": "Quality factor 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-11": {
                        "blurb": "Quality factor 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-12": {
                        "blurb": "Quality factor 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-13": {
                        "blurb": "Quality factor 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-14": {
                        "blurb": "Quality factor 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-15": {
                        "blurb": "Quality factor 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-16": {
                        "blurb": "Quality factor 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-17": {
                        "blurb": "Quality factor 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-18": {
                        "blurb": "Quality factor 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-19": {
                        "blurb": "Quality factor 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-2": {
                        "blurb": "Quality factor 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-20": {
                        "blurb": "Quality factor 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-21": {
                        "blurb": "Quality factor 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-22": {
                        "blurb": "Quality factor 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-23": {
                        "blurb": "Quality factor 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-24": {
                        "blurb": "Quality factor 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-25": {
                        "blurb": "Quality factor 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-26": {
                        "blurb": "Quality factor 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-27": {
                        "blurb": "Quality factor 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-28": {
                        "blurb": "Quality factor 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-29": {
                        "blurb": "Quality factor 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-3": {
                        "blurb": "Quality factor 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-30": {
                        "blurb": "Quality factor 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-31": {
                        "blurb": "Quality factor 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-4": {
                        "blurb": "Quality factor 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-5": {
                        "blurb": "Quality factor 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-6": {
                        "blurb": "Quality factor 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-7": {
                        "blurb": "Quality factor 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-8": {
                        "blurb": "Quality factor 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "q-9": {
                        "blurb": "Quality factor 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "FFT reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "s-0": {
                        "blurb": "Filter slope 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-0",
                        "writable": true
                    },
                    "s-1": {
                        "blurb": "Filter slope 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-1",
                        "writable": true
                    },
                    "s-10": {
                        "blurb": "Filter slope 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-10",
                        "writable": true
                    },
                    "s-11": {
                        "blurb": "Filter slope 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-11",
                        "writable": true
                    },
                    "s-12": {
                        "blurb": "Filter slope 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-12",
                        "writable": true
                    },
                    "s-13": {
                        "blurb": "Filter slope 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-13",
                        "writable": true
                    },
                    "s-14": {
                        "blurb": "Filter slope 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-14",
                        "writable": true
                    },
                    "s-15": {
                        "blurb": "Filter slope 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-15",
                        "writable": true
                    },
                    "s-16": {
                        "blurb": "Filter slope 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-16",
                        "writable": true
                    },
                    "s-17": {
                        "blurb": "Filter slope 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-17",
                        "writable": true
                    },
                    "s-18": {
                        "blurb": "Filter slope 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-18",
                        "writable": true
                    },
                    "s-19": {
                        "blurb": "Filter slope 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-19",
                        "writable": true
                    },
                    "s-2": {
                        "blurb": "Filter slope 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-2",
                        "writable": true
                    },
                    "s-20": {
                        "blurb": "Filter slope 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-20",
                        "writable": true
                    },
                    "s-21": {
                        "blurb": "Filter slope 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-21",
                        "writable": true
                    },
                    "s-22": {
                        "blurb": "Filter slope 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-22",
                        "writable": true
                    },
                    "s-23": {
                        "blurb": "Filter slope 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-23",
                        "writable": true
                    },
                    "s-24": {
                        "blurb": "Filter slope 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-24",
                        "writable": true
                    },
                    "s-25": {
                        "blurb": "Filter slope 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-25",
                        "writable": true
                    },
                    "s-26": {
                        "blurb": "Filter slope 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-26",
                        "writable": true
                    },
                    "s-27": {
                        "blurb": "Filter slope 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-27",
                        "writable": true
                    },
                    "s-28": {
                        "blurb": "Filter slope 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-28",
                        "writable": true
                    },
                    "s-29": {
                        "blurb": "Filter slope 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-29",
                        "writable": true
                    },
                    "s-3": {
                        "blurb": "Filter slope 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-3",
                        "writable": true
                    },
                    "s-30": {
                        "blurb": "Filter slope 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-30",
                        "writable": true
                    },
                    "s-31": {
                        "blurb": "Filter slope 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-31",
                        "writable": true
                    },
                    "s-4": {
                        "blurb": "Filter slope 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-4",
                        "writable": true
                    },
                    "s-5": {
                        "blurb": "Filter slope 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-5",
                        "writable": true
                    },
                    "s-6": {
                        "blurb": "Filter slope 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-6",
                        "writable": true
                    },
                    "s-7": {
                        "blurb": "Filter slope 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-7",
                        "writable": true
                    },
                    "s-8": {
                        "blurb": "Filter slope 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-8",
                        "writable": true
                    },
                    "s-9": {
                        "blurb": "Filter slope 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "x1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-9",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Shift gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sml": {
                        "blurb": "Output signal meter Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smr": {
                        "blurb": "Output signal meter Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "3.98107",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "xm-0": {
                        "blurb": "Filter mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-1": {
                        "blurb": "Filter mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-10": {
                        "blurb": "Filter mute 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-11": {
                        "blurb": "Filter mute 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-12": {
                        "blurb": "Filter mute 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-13": {
                        "blurb": "Filter mute 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-14": {
                        "blurb": "Filter mute 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-15": {
                        "blurb": "Filter mute 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-16": {
                        "blurb": "Filter mute 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-17": {
                        "blurb": "Filter mute 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-18": {
                        "blurb": "Filter mute 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-19": {
                        "blurb": "Filter mute 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-2": {
                        "blurb": "Filter mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-20": {
                        "blurb": "Filter mute 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-21": {
                        "blurb": "Filter mute 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-22": {
                        "blurb": "Filter mute 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-23": {
                        "blurb": "Filter mute 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-24": {
                        "blurb": "Filter mute 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-25": {
                        "blurb": "Filter mute 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-26": {
                        "blurb": "Filter mute 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-27": {
                        "blurb": "Filter mute 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-28": {
                        "blurb": "Filter mute 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-29": {
                        "blurb": "Filter mute 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-3": {
                        "blurb": "Filter mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-30": {
                        "blurb": "Filter mute 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-31": {
                        "blurb": "Filter mute 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-4": {
                        "blurb": "Filter mute 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-5": {
                        "blurb": "Filter mute 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-6": {
                        "blurb": "Filter mute 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-7": {
                        "blurb": "Filter mute 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-8": {
                        "blurb": "Filter mute 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xm-9": {
                        "blurb": "Filter mute 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-0": {
                        "blurb": "Filter solo 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-1": {
                        "blurb": "Filter solo 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-10": {
                        "blurb": "Filter solo 10",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-11": {
                        "blurb": "Filter solo 11",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-12": {
                        "blurb": "Filter solo 12",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-13": {
                        "blurb": "Filter solo 13",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-14": {
                        "blurb": "Filter solo 14",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-15": {
                        "blurb": "Filter solo 15",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-16": {
                        "blurb": "Filter solo 16",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-17": {
                        "blurb": "Filter solo 17",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-18": {
                        "blurb": "Filter solo 18",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-19": {
                        "blurb": "Filter solo 19",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-2": {
                        "blurb": "Filter solo 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-20": {
                        "blurb": "Filter solo 20",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-21": {
                        "blurb": "Filter solo 21",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-22": {
                        "blurb": "Filter solo 22",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-23": {
                        "blurb": "Filter solo 23",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-24": {
                        "blurb": "Filter solo 24",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-25": {
                        "blurb": "Filter solo 25",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-26": {
                        "blurb": "Filter solo 26",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-27": {
                        "blurb": "Filter solo 27",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-28": {
                        "blurb": "Filter solo 28",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-29": {
                        "blurb": "Filter solo 29",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-3": {
                        "blurb": "Filter solo 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-30": {
                        "blurb": "Filter solo 30",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-31": {
                        "blurb": "Filter solo 31",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-4": {
                        "blurb": "Filter solo 4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-5": {
                        "blurb": "Filter solo 5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-6": {
                        "blurb": "Filter solo 6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-7": {
                        "blurb": "Filter solo 7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-8": {
                        "blurb": "Filter solo 8",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xs-9": {
                        "blurb": "Filter solo 9",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-profiler-mono": {
                "author": "LSP LV2",
                "description": "LSP Profiler Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-profiler-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Utility",
                "long-name": "LSP Profiler Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cala": {
                        "blurb": "Amplitude",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "calf": {
                        "blurb": "Frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cals": {
                        "blurb": "Calibration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fbck": {
                        "blurb": "Feedback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ili": {
                        "blurb": "Integration Time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv": {
                        "blurb": "Input Level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "irfc": {
                        "blurb": "Save file command",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irfp": {
                        "blurb": "File saving progress",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "irfs": {
                        "blurb": "File saving status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "latt": {
                        "blurb": "Trig a Latency measurement",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lint": {
                        "blurb": "Trig a Linear measurement",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ltda": {
                        "blurb": "Absolute threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "6.3e-05",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ltdm": {
                        "blurb": "Max expected latency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ltdp": {
                        "blurb": "Peak threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "6.3e-05",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ltena": {
                        "blurb": "Enable Latency Detection",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lti": {
                        "blurb": "Latency Value",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "offc": {
                        "blurb": "IR Time Offset",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "-1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "post": {
                        "blurb": "Trig Post Processing",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rci": {
                        "blurb": "Regression Line Correlation",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rta": {
                        "blurb": "Reverberation Time Accuracy",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "rti": {
                        "blurb": "Reverberation Time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "scra": {
                        "blurb": "RT Algorithm",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RT20 (3)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-profiler-monoscra",
                        "writable": true
                    },
                    "scsv": {
                        "blurb": "Save Mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "LTI Auto (*.wav) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-profiler-monoscsv",
                        "writable": true
                    },
                    "stld": {
                        "blurb": "State LED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Idle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-profiler-monostld",
                        "writable": false
                    },
                    "tind": {
                        "blurb": "Actual Signal Duration",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tsgl": {
                        "blurb": "Duration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-profiler-stereo": {
                "author": "LSP LV2",
                "description": "LSP Profiler Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-profiler-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Utility",
                "long-name": "LSP Profiler Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cala": {
                        "blurb": "Amplitude",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "calf": {
                        "blurb": "Frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "20000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cals": {
                        "blurb": "Calibration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fbck": {
                        "blurb": "Feedback",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ili-l": {
                        "blurb": "Integration Time Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ili-r": {
                        "blurb": "Integration Time Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-l": {
                        "blurb": "Input Level Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ilv-r": {
                        "blurb": "Input Level Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "irfc": {
                        "blurb": "Save file command",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irfp": {
                        "blurb": "File saving progress",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "irfs": {
                        "blurb": "File saving status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "latt": {
                        "blurb": "Trig a Latency measurement",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lint": {
                        "blurb": "Trig a Linear measurement",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ltda": {
                        "blurb": "Absolute threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "6.3e-05",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ltdm": {
                        "blurb": "Max expected latency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1000",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ltdp": {
                        "blurb": "Peak threshold",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.0631",
                        "max": "1",
                        "min": "6.3e-05",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ltena": {
                        "blurb": "Enable Latency Detection",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lti-l": {
                        "blurb": "Latency Value Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "lti-r": {
                        "blurb": "Latency Value Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "offc": {
                        "blurb": "IR Time Offset",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "-1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "post": {
                        "blurb": "Trig Post Processing",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rci-l": {
                        "blurb": "Regression Line Correlation Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rci-r": {
                        "blurb": "Regression Line Correlation Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rta-l": {
                        "blurb": "Reverberation Time Accuracy Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "rta-r": {
                        "blurb": "Reverberation Time Accuracy Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "rti-l": {
                        "blurb": "Reverberation Time Left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rti-r": {
                        "blurb": "Reverberation Time Right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "scra": {
                        "blurb": "RT Algorithm",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RT20 (3)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-profiler-stereoscra",
                        "writable": true
                    },
                    "scsv": {
                        "blurb": "Save Mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "LTI Auto (*.wav) (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-profiler-stereoscsv",
                        "writable": true
                    },
                    "stld": {
                        "blurb": "State LED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Idle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-profiler-stereostld",
                        "writable": false
                    },
                    "tind": {
                        "blurb": "Actual Signal Duration",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "60",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tsgl": {
                        "blurb": "Duration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-room-builder-mono": {
                "author": "LSP LV2",
                "description": "LSP Room Builder Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-room-builder-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Reverb",
                "long-name": "LSP Room Builder Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ca0": {
                        "blurb": "Channel activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca1": {
                        "blurb": "Channel activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca2": {
                        "blurb": "Channel activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca3": {
                        "blurb": "Channel activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "cam0": {
                        "blurb": "Channel mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam1": {
                        "blurb": "Channel mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam2": {
                        "blurb": "Channel mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam3": {
                        "blurb": "Channel mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "com0": {
                        "blurb": "Channel Left/Right output mix 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com1": {
                        "blurb": "Channel Left/Right output mix 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com2": {
                        "blurb": "Channel Left/Right output mix 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com3": {
                        "blurb": "Channel Left/Right output mix 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cpitch": {
                        "blurb": "Camera Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-25",
                        "max": "89",
                        "min": "-89",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cposx": {
                        "blurb": "Camera X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cposy": {
                        "blurb": "Camera Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-0.2",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cposz": {
                        "blurb": "Camera Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "csel": {
                        "blurb": "Capture selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocsel",
                        "writable": true
                    },
                    "csf0": {
                        "blurb": "Channel source sample 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocsf0",
                        "writable": true
                    },
                    "csf1": {
                        "blurb": "Channel source sample 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocsf1",
                        "writable": true
                    },
                    "csf2": {
                        "blurb": "Channel source sample 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocsf2",
                        "writable": true
                    },
                    "csf3": {
                        "blurb": "Channel source sample 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocsf3",
                        "writable": true
                    },
                    "cst0": {
                        "blurb": "Channel source track 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocst0",
                        "writable": true
                    },
                    "cst1": {
                        "blurb": "Channel source track 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Right (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocst1",
                        "writable": true
                    },
                    "cst2": {
                        "blurb": "Channel source track 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocst2",
                        "writable": true
                    },
                    "cst3": {
                        "blurb": "Channel source track 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Right (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monocst3",
                        "writable": true
                    },
                    "cyaw": {
                        "blurb": "Camera Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "editor": {
                        "blurb": "Current editor",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Source editor (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoeditor",
                        "writable": true
                    },
                    "eq-0": {
                        "blurb": "Band 50Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-1": {
                        "blurb": "Band 107Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-2": {
                        "blurb": "Band 227Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-3": {
                        "blurb": "Band 484Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-4": {
                        "blurb": "Band 1 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-5": {
                        "blurb": "Band 2.2 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-6": {
                        "blurb": "Band 4.7 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-7": {
                        "blurb": "Band 10 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "32767 (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monofft",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcf": {
                        "blurb": "High-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "22000",
                        "min": "2000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcm": {
                        "blurb": "High-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monohcm",
                        "writable": true
                    },
                    "ifi-0": {
                        "blurb": "Fade in0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-1": {
                        "blurb": "Fade in1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-2": {
                        "blurb": "Fade in2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-3": {
                        "blurb": "Fade in3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-4": {
                        "blurb": "Fade in4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-5": {
                        "blurb": "Fade in5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-6": {
                        "blurb": "Fade in6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-7": {
                        "blurb": "Fade in7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifl-0": {
                        "blurb": "Impulse length0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-1": {
                        "blurb": "Impulse length1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-2": {
                        "blurb": "Impulse length2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-3": {
                        "blurb": "Impulse length3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-4": {
                        "blurb": "Impulse length4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-5": {
                        "blurb": "Impulse length5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-6": {
                        "blurb": "Impulse length6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-7": {
                        "blurb": "Impulse length7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifo": {
                        "blurb": "Input 3D model orientation",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "+Y forward, +Z up (9)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoifo",
                        "writable": true
                    },
                    "ifo-0": {
                        "blurb": "Fade out0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-1": {
                        "blurb": "Fade out1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-2": {
                        "blurb": "Fade out2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-3": {
                        "blurb": "Fade out3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-4": {
                        "blurb": "Fade out4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-5": {
                        "blurb": "Fade out5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-6": {
                        "blurb": "Fade out6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-7": {
                        "blurb": "Fade out7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifp": {
                        "blurb": "File loading progress",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifs": {
                        "blurb": "Input 3D model load status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-0": {
                        "blurb": "Impulse status0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-1": {
                        "blurb": "Impulse status1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-2": {
                        "blurb": "Impulse status2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-3": {
                        "blurb": "Impulse status3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-4": {
                        "blurb": "Impulse status4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-5": {
                        "blurb": "Impulse status5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-6": {
                        "blurb": "Impulse status6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-7": {
                        "blurb": "Impulse status7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ihc-0": {
                        "blurb": "Head cut0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-1": {
                        "blurb": "Head cut1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-2": {
                        "blurb": "Head cut2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-3": {
                        "blurb": "Head cut3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-4": {
                        "blurb": "Head cut4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-5": {
                        "blurb": "Head cut5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-6": {
                        "blurb": "Head cut6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-7": {
                        "blurb": "Head cut7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ils-0": {
                        "blurb": "Impulse listen0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-1": {
                        "blurb": "Impulse listen1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-2": {
                        "blurb": "Impulse listen2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-3": {
                        "blurb": "Impulse listen3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-4": {
                        "blurb": "Impulse listen4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-5": {
                        "blurb": "Impulse listen5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-6": {
                        "blurb": "Impulse listen6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-7": {
                        "blurb": "Impulse listen7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "imkp-0": {
                        "blurb": "Impulse makeup gain0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-1": {
                        "blurb": "Impulse makeup gain1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-2": {
                        "blurb": "Impulse makeup gain2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-3": {
                        "blurb": "Impulse makeup gain3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-4": {
                        "blurb": "Impulse makeup gain4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-5": {
                        "blurb": "Impulse makeup gain5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-6": {
                        "blurb": "Impulse makeup gain6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-7": {
                        "blurb": "Impulse makeup gain7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "irv-0": {
                        "blurb": "Impulse reverse0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-1": {
                        "blurb": "Impulse reverse1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-2": {
                        "blurb": "Impulse reverse2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-3": {
                        "blurb": "Impulse reverse3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-4": {
                        "blurb": "Impulse reverse4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-5": {
                        "blurb": "Impulse reverse5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-6": {
                        "blurb": "Impulse reverse6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-7": {
                        "blurb": "Impulse reverse7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "itc-0": {
                        "blurb": "Tail cut0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-1": {
                        "blurb": "Tail cut1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-2": {
                        "blurb": "Tail cut2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-3": {
                        "blurb": "Tail cut3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-4": {
                        "blurb": "Tail cut4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-5": {
                        "blurb": "Tail cut5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-6": {
                        "blurb": "Tail cut6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-7": {
                        "blurb": "Tail cut7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcf": {
                        "blurb": "Low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcm": {
                        "blurb": "Low-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monolcm",
                        "writable": true
                    },
                    "mk0": {
                        "blurb": "Makeup gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk1": {
                        "blurb": "Makeup gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk2": {
                        "blurb": "Makeup gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk3": {
                        "blurb": "Makeup gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "normal": {
                        "blurb": "Normalize rendered samples",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-0": {
                        "blurb": "Sample save command0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-1": {
                        "blurb": "Sample save command1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-2": {
                        "blurb": "Sample save command2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-3": {
                        "blurb": "Sample save command3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-4": {
                        "blurb": "Sample save command4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-5": {
                        "blurb": "Sample save command5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-6": {
                        "blurb": "Sample save command6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-7": {
                        "blurb": "Sample save command7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofp-0": {
                        "blurb": "Sample saving progress0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-1": {
                        "blurb": "Sample saving progress1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-2": {
                        "blurb": "Sample saving progress2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-3": {
                        "blurb": "Sample saving progress3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-4": {
                        "blurb": "Sample saving progress4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-5": {
                        "blurb": "Sample saving progress5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-6": {
                        "blurb": "Sample saving progress6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-7": {
                        "blurb": "Sample saving progress7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofs-0": {
                        "blurb": "Sample saving status0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-1": {
                        "blurb": "Sample saving status1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-2": {
                        "blurb": "Sample saving status2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-3": {
                        "blurb": "Sample saving status3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-4": {
                        "blurb": "Sample saving status4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-5": {
                        "blurb": "Sample saving status5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-6": {
                        "blurb": "Sample saving status6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-7": {
                        "blurb": "Sample saving status7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "p": {
                        "blurb": "Panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd0": {
                        "blurb": "Channel pre-delay 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd1": {
                        "blurb": "Channel pre-delay 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd2": {
                        "blurb": "Channel pre-delay 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd3": {
                        "blurb": "Channel pre-delay 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "prog": {
                        "blurb": "Rendering progress",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "quality": {
                        "blurb": "Quality factor",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "render": {
                        "blurb": "Launch/Stop rendering process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sca-0": {
                        "blurb": "Capture 0 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-1": {
                        "blurb": "Capture 1 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-2": {
                        "blurb": "Capture 2 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-3": {
                        "blurb": "Capture 3 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-4": {
                        "blurb": "Capture 4 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-5": {
                        "blurb": "Capture 5 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-6": {
                        "blurb": "Capture 6 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-7": {
                        "blurb": "Capture 7 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-0": {
                        "blurb": "Capture 0 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-1": {
                        "blurb": "Capture 1 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-2": {
                        "blurb": "Capture 2 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-3": {
                        "blurb": "Capture 3 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-4": {
                        "blurb": "Capture 4 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-5": {
                        "blurb": "Capture 5 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-6": {
                        "blurb": "Capture 6 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-7": {
                        "blurb": "Capture 7 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-0": {
                        "blurb": "Capture 0 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-1": {
                        "blurb": "Capture 1 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-2": {
                        "blurb": "Capture 2 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-3": {
                        "blurb": "Capture 3 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-4": {
                        "blurb": "Capture 4 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-5": {
                        "blurb": "Capture 5 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-6": {
                        "blurb": "Capture 6 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-7": {
                        "blurb": "Capture 7 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-0": {
                        "blurb": "Capture 0 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-1": {
                        "blurb": "Capture 1 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-2": {
                        "blurb": "Capture 2 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-3": {
                        "blurb": "Capture 3 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-4": {
                        "blurb": "Capture 4 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-5": {
                        "blurb": "Capture 5 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-6": {
                        "blurb": "Capture 6 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-7": {
                        "blurb": "Capture 7 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-0": {
                        "blurb": "Capture 0 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-1": {
                        "blurb": "Capture 1 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-2": {
                        "blurb": "Capture 2 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-3": {
                        "blurb": "Capture 3 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-4": {
                        "blurb": "Capture 4 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-5": {
                        "blurb": "Capture 5 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-6": {
                        "blurb": "Capture 6 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-7": {
                        "blurb": "Capture 7 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccf-0": {
                        "blurb": "Capture 0 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-0",
                        "writable": true
                    },
                    "sccf-1": {
                        "blurb": "Capture 1 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-1",
                        "writable": true
                    },
                    "sccf-2": {
                        "blurb": "Capture 2 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-2",
                        "writable": true
                    },
                    "sccf-3": {
                        "blurb": "Capture 3 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-3",
                        "writable": true
                    },
                    "sccf-4": {
                        "blurb": "Capture 4 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-4",
                        "writable": true
                    },
                    "sccf-5": {
                        "blurb": "Capture 5 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-5",
                        "writable": true
                    },
                    "sccf-6": {
                        "blurb": "Capture 6 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-6",
                        "writable": true
                    },
                    "sccf-7": {
                        "blurb": "Capture 7 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosccf-7",
                        "writable": true
                    },
                    "sccs-0": {
                        "blurb": "Capture 0 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-1": {
                        "blurb": "Capture 1 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-2": {
                        "blurb": "Capture 2 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-3": {
                        "blurb": "Capture 3 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-4": {
                        "blurb": "Capture 4 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-5": {
                        "blurb": "Capture 5 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-6": {
                        "blurb": "Capture 6 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-7": {
                        "blurb": "Capture 7 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sce-0": {
                        "blurb": "Capture 0 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-1": {
                        "blurb": "Capture 1 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-2": {
                        "blurb": "Capture 2 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-3": {
                        "blurb": "Capture 3 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-4": {
                        "blurb": "Capture 4 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-5": {
                        "blurb": "Capture 5 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-6": {
                        "blurb": "Capture 6 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-7": {
                        "blurb": "Capture 7 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scf-0": {
                        "blurb": "Capture 0 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-0",
                        "writable": true
                    },
                    "scf-1": {
                        "blurb": "Capture 1 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-1",
                        "writable": true
                    },
                    "scf-2": {
                        "blurb": "Capture 2 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-2",
                        "writable": true
                    },
                    "scf-3": {
                        "blurb": "Capture 3 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-3",
                        "writable": true
                    },
                    "scf-4": {
                        "blurb": "Capture 4 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-4",
                        "writable": true
                    },
                    "scf-5": {
                        "blurb": "Capture 5 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-5",
                        "writable": true
                    },
                    "scf-6": {
                        "blurb": "Capture 6 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-6",
                        "writable": true
                    },
                    "scf-7": {
                        "blurb": "Capture 7 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscf-7",
                        "writable": true
                    },
                    "sch-0": {
                        "blurb": "Capture 0 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-1": {
                        "blurb": "Capture 1 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-2": {
                        "blurb": "Capture 2 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-3": {
                        "blurb": "Capture 3 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-4": {
                        "blurb": "Capture 4 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-5": {
                        "blurb": "Capture 5 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-6": {
                        "blurb": "Capture 6 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-7": {
                        "blurb": "Capture 7 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-0": {
                        "blurb": "Capture 0 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-0",
                        "writable": true
                    },
                    "scl-1": {
                        "blurb": "Capture 1 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-1",
                        "writable": true
                    },
                    "scl-2": {
                        "blurb": "Capture 2 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-2",
                        "writable": true
                    },
                    "scl-3": {
                        "blurb": "Capture 3 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-3",
                        "writable": true
                    },
                    "scl-4": {
                        "blurb": "Capture 4 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-4",
                        "writable": true
                    },
                    "scl-5": {
                        "blurb": "Capture 5 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-5",
                        "writable": true
                    },
                    "scl-6": {
                        "blurb": "Capture 6 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-6",
                        "writable": true
                    },
                    "scl-7": {
                        "blurb": "Capture 7 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscl-7",
                        "writable": true
                    },
                    "scmd-0": {
                        "blurb": "Capture 0 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-0",
                        "writable": true
                    },
                    "scmd-1": {
                        "blurb": "Capture 1 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-1",
                        "writable": true
                    },
                    "scmd-2": {
                        "blurb": "Capture 2 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-2",
                        "writable": true
                    },
                    "scmd-3": {
                        "blurb": "Capture 3 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-3",
                        "writable": true
                    },
                    "scmd-4": {
                        "blurb": "Capture 4 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-4",
                        "writable": true
                    },
                    "scmd-5": {
                        "blurb": "Capture 5 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-5",
                        "writable": true
                    },
                    "scmd-6": {
                        "blurb": "Capture 6 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-6",
                        "writable": true
                    },
                    "scmd-7": {
                        "blurb": "Capture 7 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscmd-7",
                        "writable": true
                    },
                    "scpx-0": {
                        "blurb": "Capture 0 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-1": {
                        "blurb": "Capture 1 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-2": {
                        "blurb": "Capture 2 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-3": {
                        "blurb": "Capture 3 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-4": {
                        "blurb": "Capture 4 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-5": {
                        "blurb": "Capture 5 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-6": {
                        "blurb": "Capture 6 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-7": {
                        "blurb": "Capture 7 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-0": {
                        "blurb": "Capture 0 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-1": {
                        "blurb": "Capture 1 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-2": {
                        "blurb": "Capture 2 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-3": {
                        "blurb": "Capture 3 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-4": {
                        "blurb": "Capture 4 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-5": {
                        "blurb": "Capture 5 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-6": {
                        "blurb": "Capture 6 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-7": {
                        "blurb": "Capture 7 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-0": {
                        "blurb": "Capture 0 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-1": {
                        "blurb": "Capture 1 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-2": {
                        "blurb": "Capture 2 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-3": {
                        "blurb": "Capture 3 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-4": {
                        "blurb": "Capture 4 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-5": {
                        "blurb": "Capture 5 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-6": {
                        "blurb": "Capture 6 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-7": {
                        "blurb": "Capture 7 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scsd-0": {
                        "blurb": "Capture 0 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-0",
                        "writable": true
                    },
                    "scsd-1": {
                        "blurb": "Capture 1 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-1",
                        "writable": true
                    },
                    "scsd-2": {
                        "blurb": "Capture 2 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-2",
                        "writable": true
                    },
                    "scsd-3": {
                        "blurb": "Capture 3 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-3",
                        "writable": true
                    },
                    "scsd-4": {
                        "blurb": "Capture 4 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-4",
                        "writable": true
                    },
                    "scsd-5": {
                        "blurb": "Capture 5 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-5",
                        "writable": true
                    },
                    "scsd-6": {
                        "blurb": "Capture 6 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-6",
                        "writable": true
                    },
                    "scsd-7": {
                        "blurb": "Capture 7 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoscsd-7",
                        "writable": true
                    },
                    "sdur-0": {
                        "blurb": "Impulse current duration0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-1": {
                        "blurb": "Impulse current duration1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-2": {
                        "blurb": "Impulse current duration2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-3": {
                        "blurb": "Impulse current duration3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-4": {
                        "blurb": "Impulse current duration4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-5": {
                        "blurb": "Impulse current duration5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-6": {
                        "blurb": "Impulse current duration6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-7": {
                        "blurb": "Impulse current duration7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "shh-0": {
                        "blurb": "Source 0 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-1": {
                        "blurb": "Source 1 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-2": {
                        "blurb": "Source 2 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-3": {
                        "blurb": "Source 3 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-4": {
                        "blurb": "Source 4 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-5": {
                        "blurb": "Source 5 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-6": {
                        "blurb": "Source 6 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-7": {
                        "blurb": "Source 7 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "signal": {
                        "blurb": "Current signal processor",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Convolvers (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosignal",
                        "writable": true
                    },
                    "smdur-0": {
                        "blurb": "Impulse max duration0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-1": {
                        "blurb": "Impulse max duration1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-2": {
                        "blurb": "Impulse max duration2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-3": {
                        "blurb": "Impulse max duration3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-4": {
                        "blurb": "Impulse max duration4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-5": {
                        "blurb": "Impulse max duration5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-6": {
                        "blurb": "Impulse max duration6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-7": {
                        "blurb": "Impulse max duration7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ssa-0": {
                        "blurb": "Source 0 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-1": {
                        "blurb": "Source 1 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-2": {
                        "blurb": "Source 2 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-3": {
                        "blurb": "Source 3 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-4": {
                        "blurb": "Source 4 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-5": {
                        "blurb": "Source 5 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-6": {
                        "blurb": "Source 6 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-7": {
                        "blurb": "Source 7 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-0": {
                        "blurb": "Source 0 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-1": {
                        "blurb": "Source 1 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-2": {
                        "blurb": "Source 2 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-3": {
                        "blurb": "Source 3 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-4": {
                        "blurb": "Source 4 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-5": {
                        "blurb": "Source 5 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-6": {
                        "blurb": "Source 6 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-7": {
                        "blurb": "Source 7 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-0": {
                        "blurb": "Source 0 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-1": {
                        "blurb": "Source 1 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-2": {
                        "blurb": "Source 2 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-3": {
                        "blurb": "Source 3 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-4": {
                        "blurb": "Source 4 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-5": {
                        "blurb": "Source 5 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-6": {
                        "blurb": "Source 6 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-7": {
                        "blurb": "Source 7 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-0": {
                        "blurb": "Source 0 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-1": {
                        "blurb": "Source 1 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-2": {
                        "blurb": "Source 2 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-3": {
                        "blurb": "Source 3 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-4": {
                        "blurb": "Source 4 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-5": {
                        "blurb": "Source 5 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-6": {
                        "blurb": "Source 6 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-7": {
                        "blurb": "Source 7 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscf-0": {
                        "blurb": "Source 0 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-0",
                        "writable": true
                    },
                    "sscf-1": {
                        "blurb": "Source 1 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-1",
                        "writable": true
                    },
                    "sscf-2": {
                        "blurb": "Source 2 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-2",
                        "writable": true
                    },
                    "sscf-3": {
                        "blurb": "Source 3 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-3",
                        "writable": true
                    },
                    "sscf-4": {
                        "blurb": "Source 4 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-4",
                        "writable": true
                    },
                    "sscf-5": {
                        "blurb": "Source 5 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-5",
                        "writable": true
                    },
                    "sscf-6": {
                        "blurb": "Source 6 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-6",
                        "writable": true
                    },
                    "sscf-7": {
                        "blurb": "Source 7 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monosscf-7",
                        "writable": true
                    },
                    "sscv-0": {
                        "blurb": "Source 0 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-1": {
                        "blurb": "Source 1 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-2": {
                        "blurb": "Source 2 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-3": {
                        "blurb": "Source 3 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-4": {
                        "blurb": "Source 4 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-5": {
                        "blurb": "Source 5 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-6": {
                        "blurb": "Source 6 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-7": {
                        "blurb": "Source 7 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sse-0": {
                        "blurb": "Source 0 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-1": {
                        "blurb": "Source 1 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-2": {
                        "blurb": "Source 2 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-3": {
                        "blurb": "Source 3 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-4": {
                        "blurb": "Source 4 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-5": {
                        "blurb": "Source 5 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-6": {
                        "blurb": "Source 6 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-7": {
                        "blurb": "Source 7 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssel": {
                        "blurb": "Source selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monossel",
                        "writable": true
                    },
                    "ssh-0": {
                        "blurb": "Source 0 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-1": {
                        "blurb": "Source 1 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-2": {
                        "blurb": "Source 2 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-3": {
                        "blurb": "Source 3 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-4": {
                        "blurb": "Source 4 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-5": {
                        "blurb": "Source 5 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-6": {
                        "blurb": "Source 6 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-7": {
                        "blurb": "Source 7 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssph-0": {
                        "blurb": "Source 0 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-1": {
                        "blurb": "Source 1 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-2": {
                        "blurb": "Source 2 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-3": {
                        "blurb": "Source 3 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-4": {
                        "blurb": "Source 4 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-5": {
                        "blurb": "Source 5 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-6": {
                        "blurb": "Source 6 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-7": {
                        "blurb": "Source 7 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sspx-0": {
                        "blurb": "Source 0 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-1": {
                        "blurb": "Source 1 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-2": {
                        "blurb": "Source 2 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-3": {
                        "blurb": "Source 3 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-4": {
                        "blurb": "Source 4 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-5": {
                        "blurb": "Source 5 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-6": {
                        "blurb": "Source 6 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-7": {
                        "blurb": "Source 7 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-0": {
                        "blurb": "Source 0 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-1": {
                        "blurb": "Source 1 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-2": {
                        "blurb": "Source 2 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-3": {
                        "blurb": "Source 3 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-4": {
                        "blurb": "Source 4 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-5": {
                        "blurb": "Source 5 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-6": {
                        "blurb": "Source 6 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-7": {
                        "blurb": "Source 7 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-0": {
                        "blurb": "Source 0 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-1": {
                        "blurb": "Source 1 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-2": {
                        "blurb": "Source 2 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-3": {
                        "blurb": "Source 3 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-4": {
                        "blurb": "Source 4 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-5": {
                        "blurb": "Source 5 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-6": {
                        "blurb": "Source 6 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-7": {
                        "blurb": "Source 7 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-0": {
                        "blurb": "Source 0 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-1": {
                        "blurb": "Source 1 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-2": {
                        "blurb": "Source 2 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-3": {
                        "blurb": "Source 3 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-4": {
                        "blurb": "Source 4 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-5": {
                        "blurb": "Source 5 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-6": {
                        "blurb": "Source 6 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-7": {
                        "blurb": "Source 7 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "status": {
                        "blurb": "Render status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "threads": {
                        "blurb": "Number of threads for processing",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "65536",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "view": {
                        "blurb": "Current view",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Room browser (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-monoview",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wpp": {
                        "blurb": "Wet post-process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xscale": {
                        "blurb": "Scene X scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "yscale": {
                        "blurb": "Scene Y scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "zscale": {
                        "blurb": "Scene Z scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereo": {
                "author": "LSP LV2",
                "description": "LSP Room Builder Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-room-builder-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Reverb",
                "long-name": "LSP Room Builder Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ca0": {
                        "blurb": "Channel activity 0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca1": {
                        "blurb": "Channel activity 1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca2": {
                        "blurb": "Channel activity 2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "ca3": {
                        "blurb": "Channel activity 3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "cam0": {
                        "blurb": "Channel mute 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam1": {
                        "blurb": "Channel mute 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam2": {
                        "blurb": "Channel mute 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cam3": {
                        "blurb": "Channel mute 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cim0": {
                        "blurb": "Left/Right input mix 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cim1": {
                        "blurb": "Left/Right input mix 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cim2": {
                        "blurb": "Left/Right input mix 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cim3": {
                        "blurb": "Left/Right input mix 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com0": {
                        "blurb": "Channel Left/Right output mix 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com1": {
                        "blurb": "Channel Left/Right output mix 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com2": {
                        "blurb": "Channel Left/Right output mix 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "com3": {
                        "blurb": "Channel Left/Right output mix 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cpitch": {
                        "blurb": "Camera Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-25",
                        "max": "89",
                        "min": "-89",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cposx": {
                        "blurb": "Camera X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cposy": {
                        "blurb": "Camera Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-0.2",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "cposz": {
                        "blurb": "Camera Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "csel": {
                        "blurb": "Capture selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocsel",
                        "writable": true
                    },
                    "csf0": {
                        "blurb": "Channel source sample 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocsf0",
                        "writable": true
                    },
                    "csf1": {
                        "blurb": "Channel source sample 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocsf1",
                        "writable": true
                    },
                    "csf2": {
                        "blurb": "Channel source sample 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocsf2",
                        "writable": true
                    },
                    "csf3": {
                        "blurb": "Channel source sample 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "None (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocsf3",
                        "writable": true
                    },
                    "cst0": {
                        "blurb": "Channel source track 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocst0",
                        "writable": true
                    },
                    "cst1": {
                        "blurb": "Channel source track 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Right (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocst1",
                        "writable": true
                    },
                    "cst2": {
                        "blurb": "Channel source track 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Left (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocst2",
                        "writable": true
                    },
                    "cst3": {
                        "blurb": "Channel source track 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Right (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereocst3",
                        "writable": true
                    },
                    "cyaw": {
                        "blurb": "Camera Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "80",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "editor": {
                        "blurb": "Current editor",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Source editor (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoeditor",
                        "writable": true
                    },
                    "eq-0": {
                        "blurb": "Band 50Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-1": {
                        "blurb": "Band 107Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-2": {
                        "blurb": "Band 227Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-3": {
                        "blurb": "Band 484Hz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-4": {
                        "blurb": "Band 1 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-5": {
                        "blurb": "Band 2.2 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-6": {
                        "blurb": "Band 4.7 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq-7": {
                        "blurb": "Band 10 kHz gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "3.98107",
                        "min": "0.25119",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fft": {
                        "blurb": "FFT size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "32767 (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereofft",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcf": {
                        "blurb": "High-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10000",
                        "max": "22000",
                        "min": "2000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hcm": {
                        "blurb": "High-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereohcm",
                        "writable": true
                    },
                    "ifi-0": {
                        "blurb": "Fade in0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-1": {
                        "blurb": "Fade in1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-2": {
                        "blurb": "Fade in2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-3": {
                        "blurb": "Fade in3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-4": {
                        "blurb": "Fade in4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-5": {
                        "blurb": "Fade in5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-6": {
                        "blurb": "Fade in6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifi-7": {
                        "blurb": "Fade in7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifl-0": {
                        "blurb": "Impulse length0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-1": {
                        "blurb": "Impulse length1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-2": {
                        "blurb": "Impulse length2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-3": {
                        "blurb": "Impulse length3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-4": {
                        "blurb": "Impulse length4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-5": {
                        "blurb": "Impulse length5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-6": {
                        "blurb": "Impulse length6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifl-7": {
                        "blurb": "Impulse length7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifo": {
                        "blurb": "Input 3D model orientation",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "+Y forward, +Z up (9)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoifo",
                        "writable": true
                    },
                    "ifo-0": {
                        "blurb": "Fade out0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-1": {
                        "blurb": "Fade out1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-2": {
                        "blurb": "Fade out2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-3": {
                        "blurb": "Fade out3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-4": {
                        "blurb": "Fade out4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-5": {
                        "blurb": "Fade out5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-6": {
                        "blurb": "Fade out6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifo-7": {
                        "blurb": "Fade out7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ifp": {
                        "blurb": "File loading progress",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ifs": {
                        "blurb": "Input 3D model load status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-0": {
                        "blurb": "Impulse status0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-1": {
                        "blurb": "Impulse status1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-2": {
                        "blurb": "Impulse status2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-3": {
                        "blurb": "Impulse status3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-4": {
                        "blurb": "Impulse status4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-5": {
                        "blurb": "Impulse status5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-6": {
                        "blurb": "Impulse status6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ifs-7": {
                        "blurb": "Impulse status7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ihc-0": {
                        "blurb": "Head cut0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-1": {
                        "blurb": "Head cut1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-2": {
                        "blurb": "Head cut2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-3": {
                        "blurb": "Head cut3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-4": {
                        "blurb": "Head cut4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-5": {
                        "blurb": "Head cut5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-6": {
                        "blurb": "Head cut6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ihc-7": {
                        "blurb": "Head cut7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ils-0": {
                        "blurb": "Impulse listen0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-1": {
                        "blurb": "Impulse listen1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-2": {
                        "blurb": "Impulse listen2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-3": {
                        "blurb": "Impulse listen3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-4": {
                        "blurb": "Impulse listen4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-5": {
                        "blurb": "Impulse listen5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-6": {
                        "blurb": "Impulse listen6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ils-7": {
                        "blurb": "Impulse listen7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "imkp-0": {
                        "blurb": "Impulse makeup gain0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-1": {
                        "blurb": "Impulse makeup gain1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-2": {
                        "blurb": "Impulse makeup gain2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-3": {
                        "blurb": "Impulse makeup gain3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-4": {
                        "blurb": "Impulse makeup gain4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-5": {
                        "blurb": "Impulse makeup gain5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-6": {
                        "blurb": "Impulse makeup gain6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "imkp-7": {
                        "blurb": "Impulse makeup gain7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0.001",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "irv-0": {
                        "blurb": "Impulse reverse0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-1": {
                        "blurb": "Impulse reverse1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-2": {
                        "blurb": "Impulse reverse2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-3": {
                        "blurb": "Impulse reverse3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-4": {
                        "blurb": "Impulse reverse4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-5": {
                        "blurb": "Impulse reverse5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-6": {
                        "blurb": "Impulse reverse6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "irv-7": {
                        "blurb": "Impulse reverse7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "itc-0": {
                        "blurb": "Tail cut0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-1": {
                        "blurb": "Tail cut1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-2": {
                        "blurb": "Tail cut2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-3": {
                        "blurb": "Tail cut3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-4": {
                        "blurb": "Tail cut4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-5": {
                        "blurb": "Tail cut5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-6": {
                        "blurb": "Tail cut6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "itc-7": {
                        "blurb": "Tail cut7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcf": {
                        "blurb": "Low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lcm": {
                        "blurb": "Low-cut mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereolcm",
                        "writable": true
                    },
                    "mk0": {
                        "blurb": "Makeup gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk1": {
                        "blurb": "Makeup gain 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk2": {
                        "blurb": "Makeup gain 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mk3": {
                        "blurb": "Makeup gain 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "normal": {
                        "blurb": "Normalize rendered samples",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-0": {
                        "blurb": "Sample save command0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-1": {
                        "blurb": "Sample save command1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-2": {
                        "blurb": "Sample save command2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-3": {
                        "blurb": "Sample save command3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-4": {
                        "blurb": "Sample save command4",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-5": {
                        "blurb": "Sample save command5",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-6": {
                        "blurb": "Sample save command6",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofc-7": {
                        "blurb": "Sample save command7",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ofp-0": {
                        "blurb": "Sample saving progress0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-1": {
                        "blurb": "Sample saving progress1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-2": {
                        "blurb": "Sample saving progress2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-3": {
                        "blurb": "Sample saving progress3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-4": {
                        "blurb": "Sample saving progress4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-5": {
                        "blurb": "Sample saving progress5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-6": {
                        "blurb": "Sample saving progress6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofp-7": {
                        "blurb": "Sample saving progress7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ofs-0": {
                        "blurb": "Sample saving status0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-1": {
                        "blurb": "Sample saving status1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-2": {
                        "blurb": "Sample saving status2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-3": {
                        "blurb": "Sample saving status3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-4": {
                        "blurb": "Sample saving status4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-5": {
                        "blurb": "Sample saving status5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-6": {
                        "blurb": "Sample saving status6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ofs-7": {
                        "blurb": "Sample saving status7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pd": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd0": {
                        "blurb": "Channel pre-delay 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd1": {
                        "blurb": "Channel pre-delay 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd2": {
                        "blurb": "Channel pre-delay 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pd3": {
                        "blurb": "Channel pre-delay 3",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl": {
                        "blurb": "Left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr": {
                        "blurb": "Right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "prog": {
                        "blurb": "Rendering progress",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "quality": {
                        "blurb": "Quality factor",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "render": {
                        "blurb": "Launch/Stop rendering process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sca-0": {
                        "blurb": "Capture 0 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-1": {
                        "blurb": "Capture 1 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-2": {
                        "blurb": "Capture 2 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-3": {
                        "blurb": "Capture 3 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-4": {
                        "blurb": "Capture 4 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-5": {
                        "blurb": "Capture 5 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-6": {
                        "blurb": "Capture 6 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sca-7": {
                        "blurb": "Capture 7 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "135",
                        "min": "45",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-0": {
                        "blurb": "Capture 0 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-1": {
                        "blurb": "Capture 1 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-2": {
                        "blurb": "Capture 2 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-3": {
                        "blurb": "Capture 3 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-4": {
                        "blurb": "Capture 4 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-5": {
                        "blurb": "Capture 5 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-6": {
                        "blurb": "Capture 6 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scab-7": {
                        "blurb": "Capture 7 AB distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-0": {
                        "blurb": "Capture 0 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-1": {
                        "blurb": "Capture 1 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-2": {
                        "blurb": "Capture 2 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-3": {
                        "blurb": "Capture 3 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-4": {
                        "blurb": "Capture 4 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-5": {
                        "blurb": "Capture 5 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-6": {
                        "blurb": "Capture 6 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scap-7": {
                        "blurb": "Capture 7 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-0": {
                        "blurb": "Capture 0 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-1": {
                        "blurb": "Capture 1 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-2": {
                        "blurb": "Capture 2 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-3": {
                        "blurb": "Capture 3 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-4": {
                        "blurb": "Capture 4 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-5": {
                        "blurb": "Capture 5 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-6": {
                        "blurb": "Capture 6 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scar-7": {
                        "blurb": "Capture 7 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-0": {
                        "blurb": "Capture 0 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-1": {
                        "blurb": "Capture 1 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-2": {
                        "blurb": "Capture 2 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-3": {
                        "blurb": "Capture 3 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-4": {
                        "blurb": "Capture 4 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-5": {
                        "blurb": "Capture 5 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-6": {
                        "blurb": "Capture 6 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scay-7": {
                        "blurb": "Capture 7 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "270",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccf-0": {
                        "blurb": "Capture 0 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-0",
                        "writable": true
                    },
                    "sccf-1": {
                        "blurb": "Capture 1 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-1",
                        "writable": true
                    },
                    "sccf-2": {
                        "blurb": "Capture 2 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-2",
                        "writable": true
                    },
                    "sccf-3": {
                        "blurb": "Capture 3 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-3",
                        "writable": true
                    },
                    "sccf-4": {
                        "blurb": "Capture 4 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-4",
                        "writable": true
                    },
                    "sccf-5": {
                        "blurb": "Capture 5 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-5",
                        "writable": true
                    },
                    "sccf-6": {
                        "blurb": "Capture 6 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-6",
                        "writable": true
                    },
                    "sccf-7": {
                        "blurb": "Capture 7 configuration",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "XY (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosccf-7",
                        "writable": true
                    },
                    "sccs-0": {
                        "blurb": "Capture 0 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-1": {
                        "blurb": "Capture 1 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-2": {
                        "blurb": "Capture 2 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-3": {
                        "blurb": "Capture 3 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-4": {
                        "blurb": "Capture 4 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-5": {
                        "blurb": "Capture 5 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-6": {
                        "blurb": "Capture 6 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sccs-7": {
                        "blurb": "Capture 7 capsule size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2.2",
                        "max": "30",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sce-0": {
                        "blurb": "Capture 0 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-1": {
                        "blurb": "Capture 1 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-2": {
                        "blurb": "Capture 2 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-3": {
                        "blurb": "Capture 3 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-4": {
                        "blurb": "Capture 4 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-5": {
                        "blurb": "Capture 5 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-6": {
                        "blurb": "Capture 6 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sce-7": {
                        "blurb": "Capture 7 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scf-0": {
                        "blurb": "Capture 0 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-0",
                        "writable": true
                    },
                    "scf-1": {
                        "blurb": "Capture 1 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-1",
                        "writable": true
                    },
                    "scf-2": {
                        "blurb": "Capture 2 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-2",
                        "writable": true
                    },
                    "scf-3": {
                        "blurb": "Capture 3 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-3",
                        "writable": true
                    },
                    "scf-4": {
                        "blurb": "Capture 4 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-4",
                        "writable": true
                    },
                    "scf-5": {
                        "blurb": "Capture 5 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-5",
                        "writable": true
                    },
                    "scf-6": {
                        "blurb": "Capture 6 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-6",
                        "writable": true
                    },
                    "scf-7": {
                        "blurb": "Capture 7 first reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscf-7",
                        "writable": true
                    },
                    "sch-0": {
                        "blurb": "Capture 0 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-1": {
                        "blurb": "Capture 1 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-2": {
                        "blurb": "Capture 2 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-3": {
                        "blurb": "Capture 3 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-4": {
                        "blurb": "Capture 4 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-5": {
                        "blurb": "Capture 5 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-6": {
                        "blurb": "Capture 6 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sch-7": {
                        "blurb": "Capture 7 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scl-0": {
                        "blurb": "Capture 0 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-0",
                        "writable": true
                    },
                    "scl-1": {
                        "blurb": "Capture 1 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-1",
                        "writable": true
                    },
                    "scl-2": {
                        "blurb": "Capture 2 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-2",
                        "writable": true
                    },
                    "scl-3": {
                        "blurb": "Capture 3 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-3",
                        "writable": true
                    },
                    "scl-4": {
                        "blurb": "Capture 4 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-4",
                        "writable": true
                    },
                    "scl-5": {
                        "blurb": "Capture 5 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-5",
                        "writable": true
                    },
                    "scl-6": {
                        "blurb": "Capture 6 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-6",
                        "writable": true
                    },
                    "scl-7": {
                        "blurb": "Capture 7 last reflection order",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Any (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscl-7",
                        "writable": true
                    },
                    "scmd-0": {
                        "blurb": "Capture 0 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-0",
                        "writable": true
                    },
                    "scmd-1": {
                        "blurb": "Capture 1 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-1",
                        "writable": true
                    },
                    "scmd-2": {
                        "blurb": "Capture 2 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-2",
                        "writable": true
                    },
                    "scmd-3": {
                        "blurb": "Capture 3 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-3",
                        "writable": true
                    },
                    "scmd-4": {
                        "blurb": "Capture 4 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-4",
                        "writable": true
                    },
                    "scmd-5": {
                        "blurb": "Capture 5 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-5",
                        "writable": true
                    },
                    "scmd-6": {
                        "blurb": "Capture 6 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-6",
                        "writable": true
                    },
                    "scmd-7": {
                        "blurb": "Capture 7 microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Cardioid (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-7",
                        "writable": true
                    },
                    "scpx-0": {
                        "blurb": "Capture 0 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-1": {
                        "blurb": "Capture 1 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-2": {
                        "blurb": "Capture 2 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-3": {
                        "blurb": "Capture 3 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-4": {
                        "blurb": "Capture 4 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-5": {
                        "blurb": "Capture 5 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-6": {
                        "blurb": "Capture 6 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpx-7": {
                        "blurb": "Capture 7 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-0": {
                        "blurb": "Capture 0 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-1": {
                        "blurb": "Capture 1 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-2": {
                        "blurb": "Capture 2 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-3": {
                        "blurb": "Capture 3 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-4": {
                        "blurb": "Capture 4 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-5": {
                        "blurb": "Capture 5 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-6": {
                        "blurb": "Capture 6 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpy-7": {
                        "blurb": "Capture 7 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-0": {
                        "blurb": "Capture 0 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-1": {
                        "blurb": "Capture 1 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-2": {
                        "blurb": "Capture 2 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-3": {
                        "blurb": "Capture 3 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-4": {
                        "blurb": "Capture 4 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-5": {
                        "blurb": "Capture 5 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-6": {
                        "blurb": "Capture 6 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scpz-7": {
                        "blurb": "Capture 7 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "scsd-0": {
                        "blurb": "Capture 0 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-0",
                        "writable": true
                    },
                    "scsd-1": {
                        "blurb": "Capture 1 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-1",
                        "writable": true
                    },
                    "scsd-2": {
                        "blurb": "Capture 2 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-2",
                        "writable": true
                    },
                    "scsd-3": {
                        "blurb": "Capture 3 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-3",
                        "writable": true
                    },
                    "scsd-4": {
                        "blurb": "Capture 4 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-4",
                        "writable": true
                    },
                    "scsd-5": {
                        "blurb": "Capture 5 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-5",
                        "writable": true
                    },
                    "scsd-6": {
                        "blurb": "Capture 6 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-6",
                        "writable": true
                    },
                    "scsd-7": {
                        "blurb": "Capture 7 side microphone direction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Bidirectional (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-7",
                        "writable": true
                    },
                    "sdur-0": {
                        "blurb": "Impulse current duration0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-1": {
                        "blurb": "Impulse current duration1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-2": {
                        "blurb": "Impulse current duration2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-3": {
                        "blurb": "Impulse current duration3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-4": {
                        "blurb": "Impulse current duration4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-5": {
                        "blurb": "Impulse current duration5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-6": {
                        "blurb": "Impulse current duration6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "sdur-7": {
                        "blurb": "Impulse current duration7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "shh-0": {
                        "blurb": "Source 0 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-1": {
                        "blurb": "Source 1 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-2": {
                        "blurb": "Source 2 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-3": {
                        "blurb": "Source 3 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-4": {
                        "blurb": "Source 4 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-5": {
                        "blurb": "Source 5 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-6": {
                        "blurb": "Source 6 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "shh-7": {
                        "blurb": "Source 7 height",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "15",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "signal": {
                        "blurb": "Current signal processor",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Convolvers (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosignal",
                        "writable": true
                    },
                    "smdur-0": {
                        "blurb": "Impulse max duration0",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-1": {
                        "blurb": "Impulse max duration1",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-2": {
                        "blurb": "Impulse max duration2",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-3": {
                        "blurb": "Impulse max duration3",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-4": {
                        "blurb": "Impulse max duration4",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-5": {
                        "blurb": "Impulse max duration5",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-6": {
                        "blurb": "Impulse max duration6",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "smdur-7": {
                        "blurb": "Impulse max duration7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ssa-0": {
                        "blurb": "Source 0 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-1": {
                        "blurb": "Source 1 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-2": {
                        "blurb": "Source 2 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-3": {
                        "blurb": "Source 3 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-4": {
                        "blurb": "Source 4 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-5": {
                        "blurb": "Source 5 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-6": {
                        "blurb": "Source 6 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssa-7": {
                        "blurb": "Source 7 angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-0": {
                        "blurb": "Source 0 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-1": {
                        "blurb": "Source 1 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-2": {
                        "blurb": "Source 2 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-3": {
                        "blurb": "Source 3 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-4": {
                        "blurb": "Source 4 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-5": {
                        "blurb": "Source 5 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-6": {
                        "blurb": "Source 6 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssap-7": {
                        "blurb": "Source 7 Pitch angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "90",
                        "min": "-90",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-0": {
                        "blurb": "Source 0 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-1": {
                        "blurb": "Source 1 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-2": {
                        "blurb": "Source 2 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-3": {
                        "blurb": "Source 3 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-4": {
                        "blurb": "Source 4 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-5": {
                        "blurb": "Source 5 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-6": {
                        "blurb": "Source 6 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssar-7": {
                        "blurb": "Source 7 Roll angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-0": {
                        "blurb": "Source 0 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-1": {
                        "blurb": "Source 1 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-2": {
                        "blurb": "Source 2 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-3": {
                        "blurb": "Source 3 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-4": {
                        "blurb": "Source 4 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-5": {
                        "blurb": "Source 5 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-6": {
                        "blurb": "Source 6 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssay-7": {
                        "blurb": "Source 7 Yaw angle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "90",
                        "max": "360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscf-0": {
                        "blurb": "Source 0 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-0",
                        "writable": true
                    },
                    "sscf-1": {
                        "blurb": "Source 1 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-1",
                        "writable": true
                    },
                    "sscf-2": {
                        "blurb": "Source 2 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-2",
                        "writable": true
                    },
                    "sscf-3": {
                        "blurb": "Source 3 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-3",
                        "writable": true
                    },
                    "sscf-4": {
                        "blurb": "Source 4 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-4",
                        "writable": true
                    },
                    "sscf-5": {
                        "blurb": "Source 5 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-5",
                        "writable": true
                    },
                    "sscf-6": {
                        "blurb": "Source 6 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-6",
                        "writable": true
                    },
                    "sscf-7": {
                        "blurb": "Source 7 type",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Icosahedron (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereosscf-7",
                        "writable": true
                    },
                    "sscv-0": {
                        "blurb": "Source 0 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-1": {
                        "blurb": "Source 1 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-2": {
                        "blurb": "Source 2 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-3": {
                        "blurb": "Source 3 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-4": {
                        "blurb": "Source 4 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-5": {
                        "blurb": "Source 5 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-6": {
                        "blurb": "Source 6 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sscv-7": {
                        "blurb": "Source 7 curvature",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sse-0": {
                        "blurb": "Source 0 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-1": {
                        "blurb": "Source 1 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-2": {
                        "blurb": "Source 2 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-3": {
                        "blurb": "Source 3 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-4": {
                        "blurb": "Source 4 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-5": {
                        "blurb": "Source 5 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-6": {
                        "blurb": "Source 6 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sse-7": {
                        "blurb": "Source 7 enable",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssel": {
                        "blurb": "Source selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereossel",
                        "writable": true
                    },
                    "ssh-0": {
                        "blurb": "Source 0 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-1": {
                        "blurb": "Source 1 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.125",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-2": {
                        "blurb": "Source 2 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-3": {
                        "blurb": "Source 3 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.375",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-4": {
                        "blurb": "Source 4 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-5": {
                        "blurb": "Source 5 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.625",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-6": {
                        "blurb": "Source 6 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.75",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssh-7": {
                        "blurb": "Source 7 hue",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.875",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssph-0": {
                        "blurb": "Source 0 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-1": {
                        "blurb": "Source 1 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-2": {
                        "blurb": "Source 2 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-3": {
                        "blurb": "Source 3 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-4": {
                        "blurb": "Source 4 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-5": {
                        "blurb": "Source 5 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-6": {
                        "blurb": "Source 6 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ssph-7": {
                        "blurb": "Source 7 phase invert",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sspx-0": {
                        "blurb": "Source 0 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-1": {
                        "blurb": "Source 1 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-2": {
                        "blurb": "Source 2 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-3": {
                        "blurb": "Source 3 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-4": {
                        "blurb": "Source 4 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-5": {
                        "blurb": "Source 5 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-6": {
                        "blurb": "Source 6 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspx-7": {
                        "blurb": "Source 7 X position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-0": {
                        "blurb": "Source 0 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-1": {
                        "blurb": "Source 1 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-2": {
                        "blurb": "Source 2 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-3": {
                        "blurb": "Source 3 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-4": {
                        "blurb": "Source 4 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-5": {
                        "blurb": "Source 5 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-6": {
                        "blurb": "Source 6 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspy-7": {
                        "blurb": "Source 7 Y position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-1",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-0": {
                        "blurb": "Source 0 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-1": {
                        "blurb": "Source 1 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-2": {
                        "blurb": "Source 2 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-3": {
                        "blurb": "Source 3 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-4": {
                        "blurb": "Source 4 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-5": {
                        "blurb": "Source 5 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-6": {
                        "blurb": "Source 6 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sspz-7": {
                        "blurb": "Source 7 Z position",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-0": {
                        "blurb": "Source 0 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-1": {
                        "blurb": "Source 1 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-2": {
                        "blurb": "Source 2 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-3": {
                        "blurb": "Source 3 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-4": {
                        "blurb": "Source 4 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-5": {
                        "blurb": "Source 5 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-6": {
                        "blurb": "Source 6 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sss-7": {
                        "blurb": "Source 7 size",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "30",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "status": {
                        "blurb": "Render status",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "55",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "threads": {
                        "blurb": "Number of threads for processing",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "65536",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "view": {
                        "blurb": "Current view",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Room browser (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-room-builder-stereoview",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wpp": {
                        "blurb": "Wet post-process",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "xscale": {
                        "blurb": "Scene X scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "yscale": {
                        "blurb": "Scene Y scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "zscale": {
                        "blurb": "Scene Z scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-sampler-mono": {
                "author": "LSP LV2",
                "description": "LSP Sampler Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-sampler-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Instrument",
                "long-name": "LSP Sampler Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "chan": {
                        "blurb": "Channel",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "01 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-sampler-monochan",
                        "writable": true
                    },
                    "drft": {
                        "blurb": "Time drifting",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dyna": {
                        "blurb": "Dynamics",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fout": {
                        "blurb": "Note-off fadeout",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mn": {
                        "blurb": "MIDI Note #",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "127",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "mute": {
                        "blurb": "Forced mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "muting": {
                        "blurb": "Mute on stop",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noff": {
                        "blurb": "Note-off handling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "note": {
                        "blurb": "Note",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "A (9)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-sampler-mononote",
                        "writable": true
                    },
                    "oct": {
                        "blurb": "Octave",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2 (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-sampler-monooct",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "trg": {
                        "blurb": "Instrument listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-sampler-stereo": {
                "author": "LSP LV2",
                "description": "LSP Sampler Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-sampler-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Instrument",
                "long-name": "LSP Sampler Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "chan": {
                        "blurb": "Channel",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "01 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-sampler-stereochan",
                        "writable": true
                    },
                    "drft": {
                        "blurb": "Time drifting",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dyna": {
                        "blurb": "Dynamics",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fout": {
                        "blurb": "Note-off fadeout",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "50",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "mn": {
                        "blurb": "MIDI Note #",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "127",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "mute": {
                        "blurb": "Forced mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "muting": {
                        "blurb": "Mute on stop",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noff": {
                        "blurb": "Note-off handling",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "note": {
                        "blurb": "Note",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "A (9)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-sampler-stereonote",
                        "writable": true
                    },
                    "oct": {
                        "blurb": "Octave",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "2 (4)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-sampler-stereooct",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "trg": {
                        "blurb": "Instrument listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-slap-delay-mono": {
                "author": "LSP LV2",
                "description": "LSP Slapback Delay Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-slap-delay-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Delay",
                "long-name": "LSP Slapback Delay Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dd0": {
                        "blurb": "Delay 0 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd1": {
                        "blurb": "Delay 1 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd10": {
                        "blurb": "Delay 10 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd11": {
                        "blurb": "Delay 11 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd12": {
                        "blurb": "Delay 12 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd13": {
                        "blurb": "Delay 13 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd14": {
                        "blurb": "Delay 14 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd15": {
                        "blurb": "Delay 15 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd2": {
                        "blurb": "Delay 2 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd3": {
                        "blurb": "Delay 3 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd4": {
                        "blurb": "Delay 4 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd5": {
                        "blurb": "Delay 5 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd6": {
                        "blurb": "Delay 6 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd7": {
                        "blurb": "Delay 7 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd8": {
                        "blurb": "Delay 8 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd9": {
                        "blurb": "Delay 9 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df0": {
                        "blurb": "Delay 0 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df1": {
                        "blurb": "Delay 1 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df10": {
                        "blurb": "Delay 10 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df11": {
                        "blurb": "Delay 11 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df12": {
                        "blurb": "Delay 12 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df13": {
                        "blurb": "Delay 13 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df14": {
                        "blurb": "Delay 14 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df15": {
                        "blurb": "Delay 15 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df2": {
                        "blurb": "Delay 2 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df3": {
                        "blurb": "Delay 3 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df4": {
                        "blurb": "Delay 4 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df5": {
                        "blurb": "Delay 5 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df6": {
                        "blurb": "Delay 6 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df7": {
                        "blurb": "Delay 7 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df8": {
                        "blurb": "Delay 8 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df9": {
                        "blurb": "Delay 9 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg0": {
                        "blurb": "Delay 0 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg1": {
                        "blurb": "Delay 1 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg10": {
                        "blurb": "Delay 10 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg11": {
                        "blurb": "Delay 11 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg12": {
                        "blurb": "Delay 12 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg13": {
                        "blurb": "Delay 13 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg14": {
                        "blurb": "Delay 14 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg15": {
                        "blurb": "Delay 15 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg2": {
                        "blurb": "Delay 2 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg3": {
                        "blurb": "Delay 3 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg4": {
                        "blurb": "Delay 4 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg5": {
                        "blurb": "Delay 5 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg6": {
                        "blurb": "Delay 6 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg7": {
                        "blurb": "Delay 7 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg8": {
                        "blurb": "Delay 8 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg9": {
                        "blurb": "Delay 9 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dm": {
                        "blurb": "Dry mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dm0": {
                        "blurb": "Delay 0 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm0",
                        "writable": true
                    },
                    "dm1": {
                        "blurb": "Delay 1 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm1",
                        "writable": true
                    },
                    "dm10": {
                        "blurb": "Delay 10 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm10",
                        "writable": true
                    },
                    "dm11": {
                        "blurb": "Delay 11 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm11",
                        "writable": true
                    },
                    "dm12": {
                        "blurb": "Delay 12 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm12",
                        "writable": true
                    },
                    "dm13": {
                        "blurb": "Delay 13 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm13",
                        "writable": true
                    },
                    "dm14": {
                        "blurb": "Delay 14 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm14",
                        "writable": true
                    },
                    "dm15": {
                        "blurb": "Delay 15 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm15",
                        "writable": true
                    },
                    "dm2": {
                        "blurb": "Delay 2 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm2",
                        "writable": true
                    },
                    "dm3": {
                        "blurb": "Delay 3 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm3",
                        "writable": true
                    },
                    "dm4": {
                        "blurb": "Delay 4 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm4",
                        "writable": true
                    },
                    "dm5": {
                        "blurb": "Delay 5 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm5",
                        "writable": true
                    },
                    "dm6": {
                        "blurb": "Delay 6 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm6",
                        "writable": true
                    },
                    "dm7": {
                        "blurb": "Delay 7 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm7",
                        "writable": true
                    },
                    "dm8": {
                        "blurb": "Delay 8 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm8",
                        "writable": true
                    },
                    "dm9": {
                        "blurb": "Delay 9 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monodm9",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ds0": {
                        "blurb": "Delay 0 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds1": {
                        "blurb": "Delay 1 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds10": {
                        "blurb": "Delay 10 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds11": {
                        "blurb": "Delay 11 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds12": {
                        "blurb": "Delay 12 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds13": {
                        "blurb": "Delay 13 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds14": {
                        "blurb": "Delay 14 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds15": {
                        "blurb": "Delay 15 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds2": {
                        "blurb": "Delay 2 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds3": {
                        "blurb": "Delay 3 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds4": {
                        "blurb": "Delay 4 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds5": {
                        "blurb": "Delay 5 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds6": {
                        "blurb": "Delay 6 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds7": {
                        "blurb": "Delay 7 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds8": {
                        "blurb": "Delay 8 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds9": {
                        "blurb": "Delay 9 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "dt0": {
                        "blurb": "Delay 0 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt1": {
                        "blurb": "Delay 1 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt10": {
                        "blurb": "Delay 10 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt11": {
                        "blurb": "Delay 11 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt12": {
                        "blurb": "Delay 12 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt13": {
                        "blurb": "Delay 13 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt14": {
                        "blurb": "Delay 14 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt15": {
                        "blurb": "Delay 15 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt2": {
                        "blurb": "Delay 2 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt3": {
                        "blurb": "Delay 3 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt4": {
                        "blurb": "Delay 4 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt5": {
                        "blurb": "Delay 5 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt6": {
                        "blurb": "Delay 6 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt7": {
                        "blurb": "Delay 7 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt8": {
                        "blurb": "Delay 8 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt9": {
                        "blurb": "Delay 9 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq0": {
                        "blurb": "Equalizer 0 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq1": {
                        "blurb": "Equalizer 1 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq10": {
                        "blurb": "Equalizer 10 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq11": {
                        "blurb": "Equalizer 11 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq12": {
                        "blurb": "Equalizer 12 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq13": {
                        "blurb": "Equalizer 13 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq14": {
                        "blurb": "Equalizer 14 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq15": {
                        "blurb": "Equalizer 15 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq2": {
                        "blurb": "Equalizer 2 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq3": {
                        "blurb": "Equalizer 3 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq4": {
                        "blurb": "Equalizer 4 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq5": {
                        "blurb": "Equalizer 5 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq6": {
                        "blurb": "Equalizer 6 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq7": {
                        "blurb": "Equalizer 7 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq8": {
                        "blurb": "Equalizer 8 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq9": {
                        "blurb": "Equalizer 9 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fbb0": {
                        "blurb": "Delay 0 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb1": {
                        "blurb": "Delay 1 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb10": {
                        "blurb": "Delay 10 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb11": {
                        "blurb": "Delay 11 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb12": {
                        "blurb": "Delay 12 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb13": {
                        "blurb": "Delay 13 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb14": {
                        "blurb": "Delay 14 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb15": {
                        "blurb": "Delay 15 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb2": {
                        "blurb": "Delay 2 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb3": {
                        "blurb": "Delay 3 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb4": {
                        "blurb": "Delay 4 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb5": {
                        "blurb": "Delay 5 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb6": {
                        "blurb": "Delay 6 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb7": {
                        "blurb": "Delay 7 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb8": {
                        "blurb": "Delay 8 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb9": {
                        "blurb": "Delay 9 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm0": {
                        "blurb": "Delay 0 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm1": {
                        "blurb": "Delay 1 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm10": {
                        "blurb": "Delay 10 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm11": {
                        "blurb": "Delay 11 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm12": {
                        "blurb": "Delay 12 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm13": {
                        "blurb": "Delay 13 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm14": {
                        "blurb": "Delay 14 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm15": {
                        "blurb": "Delay 15 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm2": {
                        "blurb": "Delay 2 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm3": {
                        "blurb": "Delay 3 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm4": {
                        "blurb": "Delay 4 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm5": {
                        "blurb": "Delay 5 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm6": {
                        "blurb": "Delay 6 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm7": {
                        "blurb": "Delay 7 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm8": {
                        "blurb": "Delay 8 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm9": {
                        "blurb": "Delay 9 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp0": {
                        "blurb": "Delay 0 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp1": {
                        "blurb": "Delay 1 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp10": {
                        "blurb": "Delay 10 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp11": {
                        "blurb": "Delay 11 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp12": {
                        "blurb": "Delay 12 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp13": {
                        "blurb": "Delay 13 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp14": {
                        "blurb": "Delay 14 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp15": {
                        "blurb": "Delay 15 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp2": {
                        "blurb": "Delay 2 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp3": {
                        "blurb": "Delay 3 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp4": {
                        "blurb": "Delay 4 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp5": {
                        "blurb": "Delay 5 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp6": {
                        "blurb": "Delay 6 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp7": {
                        "blurb": "Delay 7 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp8": {
                        "blurb": "Delay 8 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp9": {
                        "blurb": "Delay 9 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs0": {
                        "blurb": "Delay 0 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs1": {
                        "blurb": "Delay 1 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs10": {
                        "blurb": "Delay 10 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs11": {
                        "blurb": "Delay 11 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs12": {
                        "blurb": "Delay 12 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs13": {
                        "blurb": "Delay 13 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs14": {
                        "blurb": "Delay 14 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs15": {
                        "blurb": "Delay 15 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs2": {
                        "blurb": "Delay 2 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs3": {
                        "blurb": "Delay 3 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs4": {
                        "blurb": "Delay 4 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs5": {
                        "blurb": "Delay 5 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs6": {
                        "blurb": "Delay 6 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs7": {
                        "blurb": "Delay 7 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs8": {
                        "blurb": "Delay 8 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs9": {
                        "blurb": "Delay 9 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt0": {
                        "blurb": "Delay 0 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt1": {
                        "blurb": "Delay 1 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt10": {
                        "blurb": "Delay 10 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt11": {
                        "blurb": "Delay 11 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt12": {
                        "blurb": "Delay 12 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt13": {
                        "blurb": "Delay 13 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt14": {
                        "blurb": "Delay 14 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt15": {
                        "blurb": "Delay 15 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt2": {
                        "blurb": "Delay 2 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt3": {
                        "blurb": "Delay 3 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt4": {
                        "blurb": "Delay 4 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt5": {
                        "blurb": "Delay 5 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt6": {
                        "blurb": "Delay 6 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt7": {
                        "blurb": "Delay 7 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt8": {
                        "blurb": "Delay 8 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt9": {
                        "blurb": "Delay 9 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc0": {
                        "blurb": "Delay 0 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc1": {
                        "blurb": "Delay 1 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc10": {
                        "blurb": "Delay 10 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc11": {
                        "blurb": "Delay 11 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc12": {
                        "blurb": "Delay 12 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc13": {
                        "blurb": "Delay 13 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc14": {
                        "blurb": "Delay 14 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc15": {
                        "blurb": "Delay 15 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc2": {
                        "blurb": "Delay 2 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc3": {
                        "blurb": "Delay 3 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc4": {
                        "blurb": "Delay 4 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc5": {
                        "blurb": "Delay 5 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc6": {
                        "blurb": "Delay 6 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc7": {
                        "blurb": "Delay 7 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc8": {
                        "blurb": "Delay 8 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc9": {
                        "blurb": "Delay 9 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc0": {
                        "blurb": "Delay 0 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc1": {
                        "blurb": "Delay 1 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc10": {
                        "blurb": "Delay 10 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc11": {
                        "blurb": "Delay 11 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc12": {
                        "blurb": "Delay 12 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc13": {
                        "blurb": "Delay 13 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc14": {
                        "blurb": "Delay 14 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc15": {
                        "blurb": "Delay 15 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc2": {
                        "blurb": "Delay 2 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc3": {
                        "blurb": "Delay 3 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc4": {
                        "blurb": "Delay 4 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc5": {
                        "blurb": "Delay 5 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc6": {
                        "blurb": "Delay 6 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc7": {
                        "blurb": "Delay 7 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc8": {
                        "blurb": "Delay 8 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc9": {
                        "blurb": "Delay 9 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hfc0": {
                        "blurb": "Delay 0 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc1": {
                        "blurb": "Delay 1 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc10": {
                        "blurb": "Delay 10 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc11": {
                        "blurb": "Delay 11 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc12": {
                        "blurb": "Delay 12 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc13": {
                        "blurb": "Delay 13 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc14": {
                        "blurb": "Delay 14 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc15": {
                        "blurb": "Delay 15 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc2": {
                        "blurb": "Delay 2 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc3": {
                        "blurb": "Delay 3 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc4": {
                        "blurb": "Delay 4 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc5": {
                        "blurb": "Delay 5 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc6": {
                        "blurb": "Delay 6 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc7": {
                        "blurb": "Delay 7 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc8": {
                        "blurb": "Delay 8 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc9": {
                        "blurb": "Delay 9 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc0": {
                        "blurb": "Delay 0 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc1": {
                        "blurb": "Delay 1 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc10": {
                        "blurb": "Delay 10 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc11": {
                        "blurb": "Delay 11 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc12": {
                        "blurb": "Delay 12 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc13": {
                        "blurb": "Delay 13 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc14": {
                        "blurb": "Delay 14 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc15": {
                        "blurb": "Delay 15 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc2": {
                        "blurb": "Delay 2 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc3": {
                        "blurb": "Delay 3 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc4": {
                        "blurb": "Delay 4 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc5": {
                        "blurb": "Delay 5 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc6": {
                        "blurb": "Delay 6 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc7": {
                        "blurb": "Delay 7 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc8": {
                        "blurb": "Delay 8 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc9": {
                        "blurb": "Delay 9 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lsel": {
                        "blurb": "Delay line selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0-4 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-monolsel",
                        "writable": true
                    },
                    "m0": {
                        "blurb": "Delay 0 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m1": {
                        "blurb": "Delay 1 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m10": {
                        "blurb": "Delay 10 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m11": {
                        "blurb": "Delay 11 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m12": {
                        "blurb": "Delay 12 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m13": {
                        "blurb": "Delay 13 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m14": {
                        "blurb": "Delay 14 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m15": {
                        "blurb": "Delay 15 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m2": {
                        "blurb": "Delay 2 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m3": {
                        "blurb": "Delay 3 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m4": {
                        "blurb": "Delay 4 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m5": {
                        "blurb": "Delay 5 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m6": {
                        "blurb": "Delay 6 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m7": {
                        "blurb": "Delay 7 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m8": {
                        "blurb": "Delay 8 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m9": {
                        "blurb": "Delay 9 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mono": {
                        "blurb": "Mono output",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "p-in": {
                        "blurb": "Input panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p0": {
                        "blurb": "Delay 0 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p1": {
                        "blurb": "Delay 1 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p10": {
                        "blurb": "Delay 10 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p11": {
                        "blurb": "Delay 11 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p12": {
                        "blurb": "Delay 12 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p13": {
                        "blurb": "Delay 13 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p14": {
                        "blurb": "Delay 14 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p15": {
                        "blurb": "Delay 15 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p2": {
                        "blurb": "Delay 2 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p3": {
                        "blurb": "Delay 3 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p4": {
                        "blurb": "Delay 4 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p5": {
                        "blurb": "Delay 5 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p6": {
                        "blurb": "Delay 6 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p7": {
                        "blurb": "Delay 7 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p8": {
                        "blurb": "Delay 8 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "p9": {
                        "blurb": "Delay 9 panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ph0": {
                        "blurb": "Delay 0 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph1": {
                        "blurb": "Delay 1 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph10": {
                        "blurb": "Delay 10 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph11": {
                        "blurb": "Delay 11 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph12": {
                        "blurb": "Delay 12 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph13": {
                        "blurb": "Delay 13 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph14": {
                        "blurb": "Delay 14 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph15": {
                        "blurb": "Delay 15 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph2": {
                        "blurb": "Delay 2 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph3": {
                        "blurb": "Delay 3 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph4": {
                        "blurb": "Delay 4 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph5": {
                        "blurb": "Delay 5 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph6": {
                        "blurb": "Delay 6 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph7": {
                        "blurb": "Delay 7 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph8": {
                        "blurb": "Delay 8 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph9": {
                        "blurb": "Delay 9 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pred": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ramp": {
                        "blurb": "Ramping delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s0": {
                        "blurb": "Delay 0 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s1": {
                        "blurb": "Delay 1 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s10": {
                        "blurb": "Delay 10 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s11": {
                        "blurb": "Delay 11 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s12": {
                        "blurb": "Delay 12 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s13": {
                        "blurb": "Delay 13 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s14": {
                        "blurb": "Delay 14 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s15": {
                        "blurb": "Delay 15 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s2": {
                        "blurb": "Delay 2 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s3": {
                        "blurb": "Delay 3 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s4": {
                        "blurb": "Delay 4 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s5": {
                        "blurb": "Delay 5 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s6": {
                        "blurb": "Delay 6 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s7": {
                        "blurb": "Delay 7 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s8": {
                        "blurb": "Delay 8 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s9": {
                        "blurb": "Delay 9 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "strch": {
                        "blurb": "Stretch time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "400",
                        "min": "25",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sync": {
                        "blurb": "Tempo sync",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "temp": {
                        "blurb": "Tem",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "60",
                        "min": "-60",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tempo": {
                        "blurb": "Tempo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "120",
                        "max": "360",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wm": {
                        "blurb": "Wet mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereo": {
                "author": "LSP LV2",
                "description": "LSP Slapback Delay Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-slap-delay-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Delay",
                "long-name": "LSP Slapback Delay Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dd0": {
                        "blurb": "Delay 0 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd1": {
                        "blurb": "Delay 1 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd10": {
                        "blurb": "Delay 10 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd11": {
                        "blurb": "Delay 11 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd12": {
                        "blurb": "Delay 12 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd13": {
                        "blurb": "Delay 13 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd14": {
                        "blurb": "Delay 14 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd15": {
                        "blurb": "Delay 15 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd2": {
                        "blurb": "Delay 2 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd3": {
                        "blurb": "Delay 3 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd4": {
                        "blurb": "Delay 4 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd5": {
                        "blurb": "Delay 5 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd6": {
                        "blurb": "Delay 6 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd7": {
                        "blurb": "Delay 7 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd8": {
                        "blurb": "Delay 8 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dd9": {
                        "blurb": "Delay 9 distance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df0": {
                        "blurb": "Delay 0 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df1": {
                        "blurb": "Delay 1 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df10": {
                        "blurb": "Delay 10 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df11": {
                        "blurb": "Delay 11 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df12": {
                        "blurb": "Delay 12 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df13": {
                        "blurb": "Delay 13 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df14": {
                        "blurb": "Delay 14 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df15": {
                        "blurb": "Delay 15 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df2": {
                        "blurb": "Delay 2 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df3": {
                        "blurb": "Delay 3 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df4": {
                        "blurb": "Delay 4 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df5": {
                        "blurb": "Delay 5 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df6": {
                        "blurb": "Delay 6 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df7": {
                        "blurb": "Delay 7 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df8": {
                        "blurb": "Delay 8 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "df9": {
                        "blurb": "Delay 9 fraction",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg0": {
                        "blurb": "Delay 0 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg1": {
                        "blurb": "Delay 1 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg10": {
                        "blurb": "Delay 10 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg11": {
                        "blurb": "Delay 11 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg12": {
                        "blurb": "Delay 12 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg13": {
                        "blurb": "Delay 13 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg14": {
                        "blurb": "Delay 14 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg15": {
                        "blurb": "Delay 15 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg2": {
                        "blurb": "Delay 2 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg3": {
                        "blurb": "Delay 3 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg4": {
                        "blurb": "Delay 4 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg5": {
                        "blurb": "Delay 5 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg6": {
                        "blurb": "Delay 6 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg7": {
                        "blurb": "Delay 7 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg8": {
                        "blurb": "Delay 8 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dg9": {
                        "blurb": "Delay 9 gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dm": {
                        "blurb": "Dry mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dm0": {
                        "blurb": "Delay 0 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm0",
                        "writable": true
                    },
                    "dm1": {
                        "blurb": "Delay 1 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm1",
                        "writable": true
                    },
                    "dm10": {
                        "blurb": "Delay 10 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm10",
                        "writable": true
                    },
                    "dm11": {
                        "blurb": "Delay 11 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm11",
                        "writable": true
                    },
                    "dm12": {
                        "blurb": "Delay 12 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm12",
                        "writable": true
                    },
                    "dm13": {
                        "blurb": "Delay 13 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm13",
                        "writable": true
                    },
                    "dm14": {
                        "blurb": "Delay 14 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm14",
                        "writable": true
                    },
                    "dm15": {
                        "blurb": "Delay 15 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm15",
                        "writable": true
                    },
                    "dm2": {
                        "blurb": "Delay 2 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm2",
                        "writable": true
                    },
                    "dm3": {
                        "blurb": "Delay 3 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm3",
                        "writable": true
                    },
                    "dm4": {
                        "blurb": "Delay 4 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm4",
                        "writable": true
                    },
                    "dm5": {
                        "blurb": "Delay 5 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm5",
                        "writable": true
                    },
                    "dm6": {
                        "blurb": "Delay 6 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm6",
                        "writable": true
                    },
                    "dm7": {
                        "blurb": "Delay 7 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm7",
                        "writable": true
                    },
                    "dm8": {
                        "blurb": "Delay 8 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm8",
                        "writable": true
                    },
                    "dm9": {
                        "blurb": "Delay 9 mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Off (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereodm9",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ds0": {
                        "blurb": "Delay 0 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds1": {
                        "blurb": "Delay 1 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds10": {
                        "blurb": "Delay 10 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds11": {
                        "blurb": "Delay 11 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds12": {
                        "blurb": "Delay 12 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds13": {
                        "blurb": "Delay 13 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds14": {
                        "blurb": "Delay 14 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds15": {
                        "blurb": "Delay 15 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds2": {
                        "blurb": "Delay 2 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds3": {
                        "blurb": "Delay 3 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds4": {
                        "blurb": "Delay 4 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds5": {
                        "blurb": "Delay 5 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds6": {
                        "blurb": "Delay 6 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds7": {
                        "blurb": "Delay 7 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds8": {
                        "blurb": "Delay 8 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ds9": {
                        "blurb": "Delay 9 denominator",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4",
                        "max": "64",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "dt0": {
                        "blurb": "Delay 0 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt1": {
                        "blurb": "Delay 1 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt10": {
                        "blurb": "Delay 10 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt11": {
                        "blurb": "Delay 11 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt12": {
                        "blurb": "Delay 12 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt13": {
                        "blurb": "Delay 13 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt14": {
                        "blurb": "Delay 14 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt15": {
                        "blurb": "Delay 15 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt2": {
                        "blurb": "Delay 2 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt3": {
                        "blurb": "Delay 3 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt4": {
                        "blurb": "Delay 4 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt5": {
                        "blurb": "Delay 5 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt6": {
                        "blurb": "Delay 6 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt7": {
                        "blurb": "Delay 7 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt8": {
                        "blurb": "Delay 8 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt9": {
                        "blurb": "Delay 9 time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "eq0": {
                        "blurb": "Equalizer 0 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq1": {
                        "blurb": "Equalizer 1 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq10": {
                        "blurb": "Equalizer 10 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq11": {
                        "blurb": "Equalizer 11 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq12": {
                        "blurb": "Equalizer 12 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq13": {
                        "blurb": "Equalizer 13 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq14": {
                        "blurb": "Equalizer 14 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq15": {
                        "blurb": "Equalizer 15 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq2": {
                        "blurb": "Equalizer 2 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq3": {
                        "blurb": "Equalizer 3 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq4": {
                        "blurb": "Equalizer 4 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq5": {
                        "blurb": "Equalizer 5 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq6": {
                        "blurb": "Equalizer 6 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq7": {
                        "blurb": "Equalizer 7 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq8": {
                        "blurb": "Equalizer 8 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eq9": {
                        "blurb": "Equalizer 9 on",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fbb0": {
                        "blurb": "Delay 0 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb1": {
                        "blurb": "Delay 1 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb10": {
                        "blurb": "Delay 10 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb11": {
                        "blurb": "Delay 11 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb12": {
                        "blurb": "Delay 12 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb13": {
                        "blurb": "Delay 13 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb14": {
                        "blurb": "Delay 14 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb15": {
                        "blurb": "Delay 15 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb2": {
                        "blurb": "Delay 2 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb3": {
                        "blurb": "Delay 3 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb4": {
                        "blurb": "Delay 4 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb5": {
                        "blurb": "Delay 5 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb6": {
                        "blurb": "Delay 6 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb7": {
                        "blurb": "Delay 7 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb8": {
                        "blurb": "Delay 8 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbb9": {
                        "blurb": "Delay 9 bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm0": {
                        "blurb": "Delay 0 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm1": {
                        "blurb": "Delay 1 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm10": {
                        "blurb": "Delay 10 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm11": {
                        "blurb": "Delay 11 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm12": {
                        "blurb": "Delay 12 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm13": {
                        "blurb": "Delay 13 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm14": {
                        "blurb": "Delay 14 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm15": {
                        "blurb": "Delay 15 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm2": {
                        "blurb": "Delay 2 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm3": {
                        "blurb": "Delay 3 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm4": {
                        "blurb": "Delay 4 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm5": {
                        "blurb": "Delay 5 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm6": {
                        "blurb": "Delay 6 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm7": {
                        "blurb": "Delay 7 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm8": {
                        "blurb": "Delay 8 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbm9": {
                        "blurb": "Delay 9 middle",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp0": {
                        "blurb": "Delay 0 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp1": {
                        "blurb": "Delay 1 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp10": {
                        "blurb": "Delay 10 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp11": {
                        "blurb": "Delay 11 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp12": {
                        "blurb": "Delay 12 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp13": {
                        "blurb": "Delay 13 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp14": {
                        "blurb": "Delay 14 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp15": {
                        "blurb": "Delay 15 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp2": {
                        "blurb": "Delay 2 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp3": {
                        "blurb": "Delay 3 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp4": {
                        "blurb": "Delay 4 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp5": {
                        "blurb": "Delay 5 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp6": {
                        "blurb": "Delay 6 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp7": {
                        "blurb": "Delay 7 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp8": {
                        "blurb": "Delay 8 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbp9": {
                        "blurb": "Delay 9 presence",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs0": {
                        "blurb": "Delay 0 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs1": {
                        "blurb": "Delay 1 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs10": {
                        "blurb": "Delay 10 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs11": {
                        "blurb": "Delay 11 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs12": {
                        "blurb": "Delay 12 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs13": {
                        "blurb": "Delay 13 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs14": {
                        "blurb": "Delay 14 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs15": {
                        "blurb": "Delay 15 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs2": {
                        "blurb": "Delay 2 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs3": {
                        "blurb": "Delay 3 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs4": {
                        "blurb": "Delay 4 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs5": {
                        "blurb": "Delay 5 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs6": {
                        "blurb": "Delay 6 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs7": {
                        "blurb": "Delay 7 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs8": {
                        "blurb": "Delay 8 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbs9": {
                        "blurb": "Delay 9 sub-bass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt0": {
                        "blurb": "Delay 0 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt1": {
                        "blurb": "Delay 1 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt10": {
                        "blurb": "Delay 10 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt11": {
                        "blurb": "Delay 11 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt12": {
                        "blurb": "Delay 12 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt13": {
                        "blurb": "Delay 13 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt14": {
                        "blurb": "Delay 14 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt15": {
                        "blurb": "Delay 15 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt2": {
                        "blurb": "Delay 2 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt3": {
                        "blurb": "Delay 3 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt4": {
                        "blurb": "Delay 4 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt5": {
                        "blurb": "Delay 5 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt6": {
                        "blurb": "Delay 6 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt7": {
                        "blurb": "Delay 7 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt8": {
                        "blurb": "Delay 8 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fbt9": {
                        "blurb": "Delay 9 treble",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "15.8489",
                        "min": "0.0631",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc0": {
                        "blurb": "Delay 0 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc1": {
                        "blurb": "Delay 1 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc10": {
                        "blurb": "Delay 10 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc11": {
                        "blurb": "Delay 11 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc12": {
                        "blurb": "Delay 12 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc13": {
                        "blurb": "Delay 13 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc14": {
                        "blurb": "Delay 14 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc15": {
                        "blurb": "Delay 15 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc2": {
                        "blurb": "Delay 2 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc3": {
                        "blurb": "Delay 3 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc4": {
                        "blurb": "Delay 4 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc5": {
                        "blurb": "Delay 5 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc6": {
                        "blurb": "Delay 6 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc7": {
                        "blurb": "Delay 7 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc8": {
                        "blurb": "Delay 8 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "fhc9": {
                        "blurb": "Delay 9 high-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "8000",
                        "max": "24000",
                        "min": "1000",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc0": {
                        "blurb": "Delay 0 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc1": {
                        "blurb": "Delay 1 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc10": {
                        "blurb": "Delay 10 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc11": {
                        "blurb": "Delay 11 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc12": {
                        "blurb": "Delay 12 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc13": {
                        "blurb": "Delay 13 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc14": {
                        "blurb": "Delay 14 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc15": {
                        "blurb": "Delay 15 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc2": {
                        "blurb": "Delay 2 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc3": {
                        "blurb": "Delay 3 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc4": {
                        "blurb": "Delay 4 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc5": {
                        "blurb": "Delay 5 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc6": {
                        "blurb": "Delay 6 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc7": {
                        "blurb": "Delay 7 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc8": {
                        "blurb": "Delay 8 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "flc9": {
                        "blurb": "Delay 9 low-cut frequency",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "1000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "hfc0": {
                        "blurb": "Delay 0 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc1": {
                        "blurb": "Delay 1 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc10": {
                        "blurb": "Delay 10 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc11": {
                        "blurb": "Delay 11 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc12": {
                        "blurb": "Delay 12 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc13": {
                        "blurb": "Delay 13 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc14": {
                        "blurb": "Delay 14 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc15": {
                        "blurb": "Delay 15 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc2": {
                        "blurb": "Delay 2 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc3": {
                        "blurb": "Delay 3 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc4": {
                        "blurb": "Delay 4 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc5": {
                        "blurb": "Delay 5 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc6": {
                        "blurb": "Delay 6 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc7": {
                        "blurb": "Delay 7 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc8": {
                        "blurb": "Delay 8 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hfc9": {
                        "blurb": "Delay 9 high-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc0": {
                        "blurb": "Delay 0 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc1": {
                        "blurb": "Delay 1 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc10": {
                        "blurb": "Delay 10 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc11": {
                        "blurb": "Delay 11 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc12": {
                        "blurb": "Delay 12 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc13": {
                        "blurb": "Delay 13 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc14": {
                        "blurb": "Delay 14 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc15": {
                        "blurb": "Delay 15 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc2": {
                        "blurb": "Delay 2 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc3": {
                        "blurb": "Delay 3 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc4": {
                        "blurb": "Delay 4 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc5": {
                        "blurb": "Delay 5 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc6": {
                        "blurb": "Delay 6 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc7": {
                        "blurb": "Delay 7 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc8": {
                        "blurb": "Delay 8 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lfc9": {
                        "blurb": "Delay 9 low-cut",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lsel": {
                        "blurb": "Delay line selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0-4 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-slap-delay-stereolsel",
                        "writable": true
                    },
                    "m0": {
                        "blurb": "Delay 0 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m1": {
                        "blurb": "Delay 1 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m10": {
                        "blurb": "Delay 10 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m11": {
                        "blurb": "Delay 11 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m12": {
                        "blurb": "Delay 12 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m13": {
                        "blurb": "Delay 13 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m14": {
                        "blurb": "Delay 14 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m15": {
                        "blurb": "Delay 15 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m2": {
                        "blurb": "Delay 2 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m3": {
                        "blurb": "Delay 3 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m4": {
                        "blurb": "Delay 4 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m5": {
                        "blurb": "Delay 5 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m6": {
                        "blurb": "Delay 6 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m7": {
                        "blurb": "Delay 7 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m8": {
                        "blurb": "Delay 8 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "m9": {
                        "blurb": "Delay 9 mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mono": {
                        "blurb": "Mono output",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "ph0": {
                        "blurb": "Delay 0 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph1": {
                        "blurb": "Delay 1 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph10": {
                        "blurb": "Delay 10 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph11": {
                        "blurb": "Delay 11 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph12": {
                        "blurb": "Delay 12 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph13": {
                        "blurb": "Delay 13 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph14": {
                        "blurb": "Delay 14 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph15": {
                        "blurb": "Delay 15 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph2": {
                        "blurb": "Delay 2 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph3": {
                        "blurb": "Delay 3 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph4": {
                        "blurb": "Delay 4 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph5": {
                        "blurb": "Delay 5 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph6": {
                        "blurb": "Delay 6 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph7": {
                        "blurb": "Delay 7 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph8": {
                        "blurb": "Delay 8 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ph9": {
                        "blurb": "Delay 9 phase",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pl-in": {
                        "blurb": "Input left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl0": {
                        "blurb": "Delay 0 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl1": {
                        "blurb": "Delay 1 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl10": {
                        "blurb": "Delay 10 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl11": {
                        "blurb": "Delay 11 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl12": {
                        "blurb": "Delay 12 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl13": {
                        "blurb": "Delay 13 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl14": {
                        "blurb": "Delay 14 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl15": {
                        "blurb": "Delay 15 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl2": {
                        "blurb": "Delay 2 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl3": {
                        "blurb": "Delay 3 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl4": {
                        "blurb": "Delay 4 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl5": {
                        "blurb": "Delay 5 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl6": {
                        "blurb": "Delay 6 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl7": {
                        "blurb": "Delay 7 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl8": {
                        "blurb": "Delay 8 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pl9": {
                        "blurb": "Delay 9 left channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "-100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr-in": {
                        "blurb": "Input right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr0": {
                        "blurb": "Delay 0 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr1": {
                        "blurb": "Delay 1 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr10": {
                        "blurb": "Delay 10 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr11": {
                        "blurb": "Delay 11 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr12": {
                        "blurb": "Delay 12 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr13": {
                        "blurb": "Delay 13 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr14": {
                        "blurb": "Delay 14 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr15": {
                        "blurb": "Delay 15 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr2": {
                        "blurb": "Delay 2 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr3": {
                        "blurb": "Delay 3 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr4": {
                        "blurb": "Delay 4 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr5": {
                        "blurb": "Delay 5 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr6": {
                        "blurb": "Delay 6 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr7": {
                        "blurb": "Delay 7 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr8": {
                        "blurb": "Delay 8 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pr9": {
                        "blurb": "Delay 9 right channel panorama",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "100",
                        "min": "-100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pred": {
                        "blurb": "Pre-delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ramp": {
                        "blurb": "Ramping delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s0": {
                        "blurb": "Delay 0 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s1": {
                        "blurb": "Delay 1 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s10": {
                        "blurb": "Delay 10 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s11": {
                        "blurb": "Delay 11 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s12": {
                        "blurb": "Delay 12 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s13": {
                        "blurb": "Delay 13 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s14": {
                        "blurb": "Delay 14 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s15": {
                        "blurb": "Delay 15 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s2": {
                        "blurb": "Delay 2 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s3": {
                        "blurb": "Delay 3 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s4": {
                        "blurb": "Delay 4 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s5": {
                        "blurb": "Delay 5 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s6": {
                        "blurb": "Delay 6 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s7": {
                        "blurb": "Delay 7 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s8": {
                        "blurb": "Delay 8 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "s9": {
                        "blurb": "Delay 9 solo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "strch": {
                        "blurb": "Stretch time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "100",
                        "max": "400",
                        "min": "25",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sync": {
                        "blurb": "Tempo sync",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "temp": {
                        "blurb": "Tem",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "60",
                        "min": "-60",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tempo": {
                        "blurb": "Tempo",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "120",
                        "max": "360",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "wm": {
                        "blurb": "Wet mute",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1": {
                "author": "LSP LV2",
                "description": "LSP Spectrum Analyzer x1",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Analyser",
                "long-name": "LSP Spectrum Analyzer x1",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "chn": {
                        "blurb": "Channel",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1chn",
                        "writable": true
                    },
                    "env": {
                        "blurb": "FFT Envelope",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Pink noise (3)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1env",
                        "writable": true
                    },
                    "freeze": {
                        "blurb": "Analyzer freeze",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "freq": {
                        "blurb": "Frequency",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "24000",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "frz-0": {
                        "blurb": "Freeze 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "hue-0": {
                        "blurb": "Hue 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "lvl": {
                        "blurb": "Level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Analyzer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Analyzer (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1mode",
                        "writable": true
                    },
                    "on-0": {
                        "blurb": "Analyse 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pamp": {
                        "blurb": "Preamp gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "Reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.2",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sel": {
                        "blurb": "Selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "sh-0": {
                        "blurb": "Shift gain 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "solo-0": {
                        "blurb": "Solo 0",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "splog": {
                        "blurb": "Spectralizer logarithmic scale",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "spm": {
                        "blurb": "Spectralizer mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Fog (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1spm",
                        "writable": true
                    },
                    "tol": {
                        "blurb": "FFT Tolerance",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "4096 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1tol",
                        "writable": true
                    },
                    "wnd": {
                        "blurb": "FFT Window",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Hann (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1wnd",
                        "writable": true
                    },
                    "zoom": {
                        "blurb": "Graph zoom",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "1",
                        "min": "0.01585",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-mono": {
                "author": "LSP LV2",
                "description": "LSP Trigger MIDI Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-trigger-midi-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Trigger MIDI Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "asel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Trigger (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-monoasel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "chan": {
                        "blurb": "Channel",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "01 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-monochan",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dl": {
                        "blurb": "Detect level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt": {
                        "blurb": "Detect time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr1": {
                        "blurb": "Dynamics range 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1.99526",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr2": {
                        "blurb": "Dynamics range 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dyna": {
                        "blurb": "Dynamics",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ism": {
                        "blurb": "Input signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "isv": {
                        "blurb": "Input signal display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lstn": {
                        "blurb": "Trigger listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mn": {
                        "blurb": "MIDI Note #",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "127",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Detection mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-monomode",
                        "writable": true
                    },
                    "note": {
                        "blurb": "Note",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "B (11)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-mononote",
                        "writable": true
                    },
                    "oct": {
                        "blurb": "Octave",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-monooct",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preamp": {
                        "blurb": "Signal pre-amplification",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "Reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.707946",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tfm": {
                        "blurb": "Trigger function meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tfv": {
                        "blurb": "Trigger function display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tla": {
                        "blurb": "Trigger activity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "tlm": {
                        "blurb": "Trigger level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tlv": {
                        "blurb": "Trigger level display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereo": {
                "author": "LSP LV2",
                "description": "LSP Trigger MIDI Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-trigger-midi-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Trigger MIDI Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "asel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Trigger (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-stereoasel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "chan": {
                        "blurb": "Channel",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "01 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-stereochan",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dl": {
                        "blurb": "Detect level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt": {
                        "blurb": "Detect time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr1": {
                        "blurb": "Dynamics range 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1.99526",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr2": {
                        "blurb": "Dynamics range 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dyna": {
                        "blurb": "Dynamics",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "isml": {
                        "blurb": "Input signal meter left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ismr": {
                        "blurb": "Input signal meter right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "isvl": {
                        "blurb": "Input signal left display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "isvr": {
                        "blurb": "Input signal right display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lstn": {
                        "blurb": "Trigger listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mn": {
                        "blurb": "MIDI Note #",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "127",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "mode": {
                        "blurb": "Detection mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-stereomode",
                        "writable": true
                    },
                    "note": {
                        "blurb": "Note",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "B (11)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-stereonote",
                        "writable": true
                    },
                    "oct": {
                        "blurb": "Octave",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-stereooct",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preamp": {
                        "blurb": "Signal pre-amplification",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "Reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.707946",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssrc": {
                        "blurb": "Signal source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-midi-stereossrc",
                        "writable": true
                    },
                    "tfm": {
                        "blurb": "Trigger function meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tfv": {
                        "blurb": "Trigger function display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tla": {
                        "blurb": "Trigger activity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "tlm": {
                        "blurb": "Trigger level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tlv": {
                        "blurb": "Trigger level display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-trigger-mono": {
                "author": "LSP LV2",
                "description": "LSP Trigger Mono",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-trigger-mono",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Trigger Mono",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 1\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "asel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Trigger (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-monoasel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dl": {
                        "blurb": "Detect level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt": {
                        "blurb": "Detect time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr1": {
                        "blurb": "Dynamics range 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1.99526",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr2": {
                        "blurb": "Dynamics range 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dyna": {
                        "blurb": "Dynamics",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ism": {
                        "blurb": "Input signal meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "isv": {
                        "blurb": "Input signal display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lstn": {
                        "blurb": "Trigger listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Detection mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-monomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preamp": {
                        "blurb": "Signal pre-amplification",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "Reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.707946",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tfm": {
                        "blurb": "Trigger function meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tfv": {
                        "blurb": "Trigger function display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tla": {
                        "blurb": "Trigger activity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "tlm": {
                        "blurb": "Trigger level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tlv": {
                        "blurb": "Trigger level display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "lsp-plug-in-plugins-lv2-trigger-stereo": {
                "author": "LSP LV2",
                "description": "LSP Trigger Stereo",
                "hierarchy": [
                    "lsp-plug-in-plugins-lv2-trigger-stereo",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Filter/Effect/Audio/LV2/Dynamics",
                "long-name": "LSP Trigger Stereo",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n       channels: 2\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "asel": {
                        "blurb": "Area selector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Trigger (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-stereoasel",
                        "writable": true
                    },
                    "bypass": {
                        "blurb": "Bypass",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "clear": {
                        "blurb": "Clear graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dl": {
                        "blurb": "Detect level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.25119",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dry": {
                        "blurb": "Dry amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dt": {
                        "blurb": "Detect time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "5",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr1": {
                        "blurb": "Dynamics range 1",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1.99526",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dtr2": {
                        "blurb": "Dynamics range 2",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.01585",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "dyna": {
                        "blurb": "Dynamics",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "g-out": {
                        "blurb": "Output gain",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "isml": {
                        "blurb": "Input signal meter left",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "ismr": {
                        "blurb": "Input signal meter right",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "isvl": {
                        "blurb": "Input signal left display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "isvr": {
                        "blurb": "Input signal right display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "lstn": {
                        "blurb": "Trigger listen",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Detection mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "RMS (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-stereomode",
                        "writable": true
                    },
                    "out-latency": {
                        "blurb": "Latency OUT",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "192000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    },
                    "pause": {
                        "blurb": "Pause graph analysis",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preamp": {
                        "blurb": "Signal pre-amplification",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "react": {
                        "blurb": "Reactivity",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "20",
                        "max": "250",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rl": {
                        "blurb": "Release level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "rrl": {
                        "blurb": "Relative release level",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.707946",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rt": {
                        "blurb": "Release time",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "10",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "ssrc": {
                        "blurb": "Signal source",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "Middle (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "lsp-plug-in-plugins-lv2-trigger-stereossrc",
                        "writable": true
                    },
                    "tfm": {
                        "blurb": "Trigger function meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tfv": {
                        "blurb": "Trigger function display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tla": {
                        "blurb": "Trigger activity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "tlm": {
                        "blurb": "Trigger level meter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "20",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": false
                    },
                    "tlv": {
                        "blurb": "Trigger level display",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "wet": {
                        "blurb": "Wet amount",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstlv2",
        "license": "LGPL",
        "other-types": {
            "lsp-plug-in-plugins-lv2-comp-delay-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Samples",
                        "name": "Samples",
                        "value": "0"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "1"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-comp-delay-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Samples",
                        "name": "Samples",
                        "value": "0"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "1"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-comp-delay-x2-stereomode-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Samples",
                        "name": "Samples",
                        "value": "0"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "1"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-comp-delay-x2-stereomode-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Samples",
                        "name": "Samples",
                        "value": "0"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "1"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrcm-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrcm-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrscm-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrscm-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrscs-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrscs-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrsct-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-lrsct-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-monocm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Downward",
                        "name": "Downward",
                        "value": "0"
                    },
                    {
                        "desc": "Upward",
                        "name": "Upward",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-monoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-monosct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-mscm-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-mscm-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-msscm-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-msscm-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-msscs-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-msscs-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-mssct-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-mssct-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-stereocm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Downward",
                        "name": "Downward",
                        "value": "0"
                    },
                    {
                        "desc": "Upward",
                        "name": "Upward",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-stereoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-stereoscs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-compressor-stereosct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrpsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrscm-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrscm-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrscs-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrscs-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrsct-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-lrsct-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-monoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-monosct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-mspsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-msscm-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-msscm-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-msscs-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-msscs-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-mssct-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-mssct-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-stereoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-stereoscs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-dyna-processor-stereosct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Feed-forward",
                        "name": "Feed-forward",
                        "value": "0"
                    },
                    {
                        "desc": "Feed-back",
                        "name": "Feed-back",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-lrem-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-lrem-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-lrscm-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-lrscm-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-lrscs-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-lrscs-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-monoem": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-monoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-msem-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-msem-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-msscm-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-msscm-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-msscs-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-msscs-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-stereoem": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-stereoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-expander-stereoscs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-lrscm-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-lrscm-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-lrscs-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-lrscs-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-monoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-msscm-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-msscm-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-msscs-m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-msscs-s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-stereoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-gate-stereoscs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bands Left",
                        "name": "Bands Left",
                        "value": "0"
                    },
                    {
                        "desc": "Bands Right",
                        "name": "Bands Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-lrslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-monoslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bands Middle",
                        "name": "Bands Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Bands Side",
                        "name": "Bands Side",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-msslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x16-stereoslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bands Left 0-15",
                        "name": "Bands Left 0-15",
                        "value": "0"
                    },
                    {
                        "desc": "Bands Right 0-15",
                        "name": "Bands Right 0-15",
                        "value": "1"
                    },
                    {
                        "desc": "Bands Left 16-31",
                        "name": "Bands Left 16-31",
                        "value": "2"
                    },
                    {
                        "desc": "Bands Right 16-31",
                        "name": "Bands Right 16-31",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-lrslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bands 0-15",
                        "name": "Bands 0-15",
                        "value": "0"
                    },
                    {
                        "desc": "Bands 16-31",
                        "name": "Bands 16-31",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-monoslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bands Middle 0-15",
                        "name": "Bands Middle 0-15",
                        "value": "0"
                    },
                    {
                        "desc": "Bands Side 0-15",
                        "name": "Bands Side 0-15",
                        "value": "1"
                    },
                    {
                        "desc": "Bands Middle 16-31",
                        "name": "Bands Middle 16-31",
                        "value": "2"
                    },
                    {
                        "desc": "Bands Side 16-31",
                        "name": "Bands Side 16-31",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-msslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bands 0-15",
                        "name": "Bands 0-15",
                        "value": "0"
                    },
                    {
                        "desc": "Bands 16-31",
                        "name": "Bands 16-31",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-graph-equalizer-x32-stereoslope": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "BT48",
                        "name": "BT48",
                        "value": "0"
                    },
                    {
                        "desc": "MT48",
                        "name": "MT48",
                        "value": "1"
                    },
                    {
                        "desc": "BT72",
                        "name": "BT72",
                        "value": "2"
                    },
                    {
                        "desc": "MT72",
                        "name": "MT72",
                        "value": "3"
                    },
                    {
                        "desc": "BT96",
                        "name": "BT96",
                        "value": "4"
                    },
                    {
                        "desc": "MT96",
                        "name": "MT96",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-monocs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "1"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "512",
                        "name": "512",
                        "value": "0"
                    },
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "1"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "2"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "3"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "4"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "5"
                    },
                    {
                        "desc": "32767",
                        "name": "32767",
                        "value": "6"
                    },
                    {
                        "desc": "65536",
                        "name": "65536",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-monohcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-monolcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereocs-l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1 Left",
                        "name": "File 1 Left",
                        "value": "1"
                    },
                    {
                        "desc": "File 1 Right",
                        "name": "File 1 Right",
                        "value": "2"
                    },
                    {
                        "desc": "File 2 Left",
                        "name": "File 2 Left",
                        "value": "3"
                    },
                    {
                        "desc": "File 2 Right",
                        "name": "File 2 Right",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereocs-r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1 Left",
                        "name": "File 1 Left",
                        "value": "1"
                    },
                    {
                        "desc": "File 1 Right",
                        "name": "File 1 Right",
                        "value": "2"
                    },
                    {
                        "desc": "File 2 Left",
                        "name": "File 2 Left",
                        "value": "3"
                    },
                    {
                        "desc": "File 2 Right",
                        "name": "File 2 Right",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "512",
                        "name": "512",
                        "value": "0"
                    },
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "1"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "2"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "3"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "4"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "5"
                    },
                    {
                        "desc": "32767",
                        "name": "32767",
                        "value": "6"
                    },
                    {
                        "desc": "65536",
                        "name": "65536",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "0"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereohcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-responses-stereolcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocsf3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocst0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocst1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocst2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monocst3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "512",
                        "name": "512",
                        "value": "0"
                    },
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "1"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "2"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "3"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "4"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "5"
                    },
                    {
                        "desc": "32767",
                        "name": "32767",
                        "value": "6"
                    },
                    {
                        "desc": "65536",
                        "name": "65536",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "0"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "1"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "2"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monohcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-monolcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocsf3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "1"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "2"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "3"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereocst3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Track 1",
                        "name": "Track 1",
                        "value": "0"
                    },
                    {
                        "desc": "Track 2",
                        "name": "Track 2",
                        "value": "1"
                    },
                    {
                        "desc": "Track 3",
                        "name": "Track 3",
                        "value": "2"
                    },
                    {
                        "desc": "Track 4",
                        "name": "Track 4",
                        "value": "3"
                    },
                    {
                        "desc": "Track 5",
                        "name": "Track 5",
                        "value": "4"
                    },
                    {
                        "desc": "Track 6",
                        "name": "Track 6",
                        "value": "5"
                    },
                    {
                        "desc": "Track 7",
                        "name": "Track 7",
                        "value": "6"
                    },
                    {
                        "desc": "Track 8",
                        "name": "Track 8",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "512",
                        "name": "512",
                        "value": "0"
                    },
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "1"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "2"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "3"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "4"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "5"
                    },
                    {
                        "desc": "32767",
                        "name": "32767",
                        "value": "6"
                    },
                    {
                        "desc": "65536",
                        "name": "65536",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "File 1",
                        "name": "File 1",
                        "value": "0"
                    },
                    {
                        "desc": "File 2",
                        "name": "File 2",
                        "value": "1"
                    },
                    {
                        "desc": "File 3",
                        "name": "File 3",
                        "value": "2"
                    },
                    {
                        "desc": "File 4",
                        "name": "File 4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereohcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-impulse-reverb-stereolcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-limiter-monodith": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "7bit",
                        "name": "7bit",
                        "value": "1"
                    },
                    {
                        "desc": "8bit",
                        "name": "8bit",
                        "value": "2"
                    },
                    {
                        "desc": "11bit",
                        "name": "11bit",
                        "value": "3"
                    },
                    {
                        "desc": "12bit",
                        "name": "12bit",
                        "value": "4"
                    },
                    {
                        "desc": "15bit",
                        "name": "15bit",
                        "value": "5"
                    },
                    {
                        "desc": "16bit",
                        "name": "16bit",
                        "value": "6"
                    },
                    {
                        "desc": "23bit",
                        "name": "23bit",
                        "value": "7"
                    },
                    {
                        "desc": "24bit",
                        "name": "24bit",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-limiter-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic",
                        "name": "Classic",
                        "value": "0"
                    },
                    {
                        "desc": "Herm Thin",
                        "name": "Herm Thin",
                        "value": "1"
                    },
                    {
                        "desc": "Herm Wide",
                        "name": "Herm Wide",
                        "value": "2"
                    },
                    {
                        "desc": "Herm Tail",
                        "name": "Herm Tail",
                        "value": "3"
                    },
                    {
                        "desc": "Herm Duck",
                        "name": "Herm Duck",
                        "value": "4"
                    },
                    {
                        "desc": "Exp Thin",
                        "name": "Exp Thin",
                        "value": "5"
                    },
                    {
                        "desc": "Exp Wide",
                        "name": "Exp Wide",
                        "value": "6"
                    },
                    {
                        "desc": "Exp Tail",
                        "name": "Exp Tail",
                        "value": "7"
                    },
                    {
                        "desc": "Exp Duck",
                        "name": "Exp Duck",
                        "value": "8"
                    },
                    {
                        "desc": "Line Thin",
                        "name": "Line Thin",
                        "value": "9"
                    },
                    {
                        "desc": "Line Wide",
                        "name": "Line Wide",
                        "value": "10"
                    },
                    {
                        "desc": "Line Tail",
                        "name": "Line Tail",
                        "value": "11"
                    },
                    {
                        "desc": "Line Duck",
                        "name": "Line Duck",
                        "value": "12"
                    },
                    {
                        "desc": "Mixed Herm",
                        "name": "Mixed Herm",
                        "value": "13"
                    },
                    {
                        "desc": "Mixed Exp",
                        "name": "Mixed Exp",
                        "value": "14"
                    },
                    {
                        "desc": "Mixed Line",
                        "name": "Mixed Line",
                        "value": "15"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-limiter-monoovs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Half x2(2L)",
                        "name": "Half x2(2L)",
                        "value": "1"
                    },
                    {
                        "desc": "Half x2(3L)",
                        "name": "Half x2(3L)",
                        "value": "2"
                    },
                    {
                        "desc": "Half x3(2L)",
                        "name": "Half x3(2L)",
                        "value": "3"
                    },
                    {
                        "desc": "Half x3(3L)",
                        "name": "Half x3(3L)",
                        "value": "4"
                    },
                    {
                        "desc": "Half x4(2L)",
                        "name": "Half x4(2L)",
                        "value": "5"
                    },
                    {
                        "desc": "Half x4(3L)",
                        "name": "Half x4(3L)",
                        "value": "6"
                    },
                    {
                        "desc": "Half x6(2L)",
                        "name": "Half x6(2L)",
                        "value": "7"
                    },
                    {
                        "desc": "Half x6(3L)",
                        "name": "Half x6(3L)",
                        "value": "8"
                    },
                    {
                        "desc": "Half x8(2L)",
                        "name": "Half x8(2L)",
                        "value": "9"
                    },
                    {
                        "desc": "Half x8(3L)",
                        "name": "Half x8(3L)",
                        "value": "10"
                    },
                    {
                        "desc": "Full x2(2L)",
                        "name": "Full x2(2L)",
                        "value": "11"
                    },
                    {
                        "desc": "Full x2(3L)",
                        "name": "Full x2(3L)",
                        "value": "12"
                    },
                    {
                        "desc": "Full x3(2L)",
                        "name": "Full x3(2L)",
                        "value": "13"
                    },
                    {
                        "desc": "Full x3(3L)",
                        "name": "Full x3(3L)",
                        "value": "14"
                    },
                    {
                        "desc": "Full x4(2L)",
                        "name": "Full x4(2L)",
                        "value": "15"
                    },
                    {
                        "desc": "Full x4(3L)",
                        "name": "Full x4(3L)",
                        "value": "16"
                    },
                    {
                        "desc": "Full x6(2L)",
                        "name": "Full x6(2L)",
                        "value": "17"
                    },
                    {
                        "desc": "Full x6(3L)",
                        "name": "Full x6(3L)",
                        "value": "18"
                    },
                    {
                        "desc": "Full x8(2L)",
                        "name": "Full x8(2L)",
                        "value": "19"
                    },
                    {
                        "desc": "Full x8(3L)",
                        "name": "Full x8(3L)",
                        "value": "20"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-limiter-stereodith": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "7bit",
                        "name": "7bit",
                        "value": "1"
                    },
                    {
                        "desc": "8bit",
                        "name": "8bit",
                        "value": "2"
                    },
                    {
                        "desc": "11bit",
                        "name": "11bit",
                        "value": "3"
                    },
                    {
                        "desc": "12bit",
                        "name": "12bit",
                        "value": "4"
                    },
                    {
                        "desc": "15bit",
                        "name": "15bit",
                        "value": "5"
                    },
                    {
                        "desc": "16bit",
                        "name": "16bit",
                        "value": "6"
                    },
                    {
                        "desc": "23bit",
                        "name": "23bit",
                        "value": "7"
                    },
                    {
                        "desc": "24bit",
                        "name": "24bit",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-limiter-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic",
                        "name": "Classic",
                        "value": "0"
                    },
                    {
                        "desc": "Herm Thin",
                        "name": "Herm Thin",
                        "value": "1"
                    },
                    {
                        "desc": "Herm Wide",
                        "name": "Herm Wide",
                        "value": "2"
                    },
                    {
                        "desc": "Herm Tail",
                        "name": "Herm Tail",
                        "value": "3"
                    },
                    {
                        "desc": "Herm Duck",
                        "name": "Herm Duck",
                        "value": "4"
                    },
                    {
                        "desc": "Exp Thin",
                        "name": "Exp Thin",
                        "value": "5"
                    },
                    {
                        "desc": "Exp Wide",
                        "name": "Exp Wide",
                        "value": "6"
                    },
                    {
                        "desc": "Exp Tail",
                        "name": "Exp Tail",
                        "value": "7"
                    },
                    {
                        "desc": "Exp Duck",
                        "name": "Exp Duck",
                        "value": "8"
                    },
                    {
                        "desc": "Line Thin",
                        "name": "Line Thin",
                        "value": "9"
                    },
                    {
                        "desc": "Line Wide",
                        "name": "Line Wide",
                        "value": "10"
                    },
                    {
                        "desc": "Line Tail",
                        "name": "Line Tail",
                        "value": "11"
                    },
                    {
                        "desc": "Line Duck",
                        "name": "Line Duck",
                        "value": "12"
                    },
                    {
                        "desc": "Mixed Herm",
                        "name": "Mixed Herm",
                        "value": "13"
                    },
                    {
                        "desc": "Mixed Exp",
                        "name": "Mixed Exp",
                        "value": "14"
                    },
                    {
                        "desc": "Mixed Line",
                        "name": "Mixed Line",
                        "value": "15"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-limiter-stereoovs": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Half x2(2L)",
                        "name": "Half x2(2L)",
                        "value": "1"
                    },
                    {
                        "desc": "Half x2(3L)",
                        "name": "Half x2(3L)",
                        "value": "2"
                    },
                    {
                        "desc": "Half x3(2L)",
                        "name": "Half x3(2L)",
                        "value": "3"
                    },
                    {
                        "desc": "Half x3(3L)",
                        "name": "Half x3(3L)",
                        "value": "4"
                    },
                    {
                        "desc": "Half x4(2L)",
                        "name": "Half x4(2L)",
                        "value": "5"
                    },
                    {
                        "desc": "Half x4(3L)",
                        "name": "Half x4(3L)",
                        "value": "6"
                    },
                    {
                        "desc": "Half x6(2L)",
                        "name": "Half x6(2L)",
                        "value": "7"
                    },
                    {
                        "desc": "Half x6(3L)",
                        "name": "Half x6(3L)",
                        "value": "8"
                    },
                    {
                        "desc": "Half x8(2L)",
                        "name": "Half x8(2L)",
                        "value": "9"
                    },
                    {
                        "desc": "Half x8(3L)",
                        "name": "Half x8(3L)",
                        "value": "10"
                    },
                    {
                        "desc": "Full x2(2L)",
                        "name": "Full x2(2L)",
                        "value": "11"
                    },
                    {
                        "desc": "Full x2(3L)",
                        "name": "Full x2(3L)",
                        "value": "12"
                    },
                    {
                        "desc": "Full x3(2L)",
                        "name": "Full x3(2L)",
                        "value": "13"
                    },
                    {
                        "desc": "Full x3(3L)",
                        "name": "Full x3(3L)",
                        "value": "14"
                    },
                    {
                        "desc": "Full x4(2L)",
                        "name": "Full x4(2L)",
                        "value": "15"
                    },
                    {
                        "desc": "Full x4(3L)",
                        "name": "Full x4(3L)",
                        "value": "16"
                    },
                    {
                        "desc": "Full x6(2L)",
                        "name": "Full x6(2L)",
                        "value": "17"
                    },
                    {
                        "desc": "Full x6(3L)",
                        "name": "Full x6(3L)",
                        "value": "18"
                    },
                    {
                        "desc": "Full x8(2L)",
                        "name": "Full x8(2L)",
                        "value": "19"
                    },
                    {
                        "desc": "Full x8(3L)",
                        "name": "Full x8(3L)",
                        "value": "20"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrbsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Split Left",
                        "name": "Split Left",
                        "value": "0"
                    },
                    {
                        "desc": "Split Right",
                        "name": "Split Right",
                        "value": "1"
                    },
                    {
                        "desc": "Band 0",
                        "name": "Band 0",
                        "value": "2"
                    },
                    {
                        "desc": "Band 1",
                        "name": "Band 1",
                        "value": "3"
                    },
                    {
                        "desc": "Band 2",
                        "name": "Band 2",
                        "value": "4"
                    },
                    {
                        "desc": "Band 3",
                        "name": "Band 3",
                        "value": "5"
                    },
                    {
                        "desc": "Band 4",
                        "name": "Band 4",
                        "value": "6"
                    },
                    {
                        "desc": "Band 5",
                        "name": "Band 5",
                        "value": "7"
                    },
                    {
                        "desc": "Band 6",
                        "name": "Band 6",
                        "value": "8"
                    },
                    {
                        "desc": "Band 7",
                        "name": "Band 7",
                        "value": "9"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-0l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-0r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-1l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-1r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-2l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-2r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-3l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-3r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-4l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-4r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-5l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-5r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-6l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-6r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-7l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrcm-7r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrenvb": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Pink BT",
                        "name": "Pink BT",
                        "value": "1"
                    },
                    {
                        "desc": "Pink MT",
                        "name": "Pink MT",
                        "value": "2"
                    },
                    {
                        "desc": "Brown BT",
                        "name": "Brown BT",
                        "value": "3"
                    },
                    {
                        "desc": "Brown MT",
                        "name": "Brown MT",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic",
                        "name": "Classic",
                        "value": "0"
                    },
                    {
                        "desc": "Modern",
                        "name": "Modern",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-0l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-0r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-1l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-1r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-2l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-2r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-3l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-3r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-4l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-4r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-5l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-5r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-6l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-6r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-7l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscm-7r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-0l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-0r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-1l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-1r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-2l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-2r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-3l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-3r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-4l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-4r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-5l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-5r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-6l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-6r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-7l": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-lrscs-7r": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monobsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Split",
                        "name": "Split",
                        "value": "0"
                    },
                    {
                        "desc": "Band 0",
                        "name": "Band 0",
                        "value": "1"
                    },
                    {
                        "desc": "Band 1",
                        "name": "Band 1",
                        "value": "2"
                    },
                    {
                        "desc": "Band 2",
                        "name": "Band 2",
                        "value": "3"
                    },
                    {
                        "desc": "Band 3",
                        "name": "Band 3",
                        "value": "4"
                    },
                    {
                        "desc": "Band 4",
                        "name": "Band 4",
                        "value": "5"
                    },
                    {
                        "desc": "Band 5",
                        "name": "Band 5",
                        "value": "6"
                    },
                    {
                        "desc": "Band 6",
                        "name": "Band 6",
                        "value": "7"
                    },
                    {
                        "desc": "Band 7",
                        "name": "Band 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monocm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoenvb": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Pink BT",
                        "name": "Pink BT",
                        "value": "1"
                    },
                    {
                        "desc": "Pink MT",
                        "name": "Pink MT",
                        "value": "2"
                    },
                    {
                        "desc": "Brown BT",
                        "name": "Brown BT",
                        "value": "3"
                    },
                    {
                        "desc": "Brown MT",
                        "name": "Brown MT",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic",
                        "name": "Classic",
                        "value": "0"
                    },
                    {
                        "desc": "Modern",
                        "name": "Modern",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-monoscm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msbsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Split Mid",
                        "name": "Split Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Split Side",
                        "name": "Split Side",
                        "value": "1"
                    },
                    {
                        "desc": "Band 0",
                        "name": "Band 0",
                        "value": "2"
                    },
                    {
                        "desc": "Band 1",
                        "name": "Band 1",
                        "value": "3"
                    },
                    {
                        "desc": "Band 2",
                        "name": "Band 2",
                        "value": "4"
                    },
                    {
                        "desc": "Band 3",
                        "name": "Band 3",
                        "value": "5"
                    },
                    {
                        "desc": "Band 4",
                        "name": "Band 4",
                        "value": "6"
                    },
                    {
                        "desc": "Band 5",
                        "name": "Band 5",
                        "value": "7"
                    },
                    {
                        "desc": "Band 6",
                        "name": "Band 6",
                        "value": "8"
                    },
                    {
                        "desc": "Band 7",
                        "name": "Band 7",
                        "value": "9"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-0m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-0s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-1m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-1s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-2m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-2s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-3m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-3s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-4m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-4s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-5m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-5s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-6m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-6s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-7m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-mscm-7s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msenvb": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Pink BT",
                        "name": "Pink BT",
                        "value": "1"
                    },
                    {
                        "desc": "Pink MT",
                        "name": "Pink MT",
                        "value": "2"
                    },
                    {
                        "desc": "Brown BT",
                        "name": "Brown BT",
                        "value": "3"
                    },
                    {
                        "desc": "Brown MT",
                        "name": "Brown MT",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic",
                        "name": "Classic",
                        "value": "0"
                    },
                    {
                        "desc": "Modern",
                        "name": "Modern",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-0m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-0s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-1m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-1s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-2m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-2s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-3m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-3s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-4m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-4s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-5m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-5s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-6m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-6s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-7m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscm-7s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-0m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-0s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-1m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-1s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-2m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-2s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-3m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-3s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-4m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-4s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-5m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-5s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-6m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-6s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-7m": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-msscs-7s": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereobsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Split",
                        "name": "Split",
                        "value": "0"
                    },
                    {
                        "desc": "Band 0",
                        "name": "Band 0",
                        "value": "1"
                    },
                    {
                        "desc": "Band 1",
                        "name": "Band 1",
                        "value": "2"
                    },
                    {
                        "desc": "Band 2",
                        "name": "Band 2",
                        "value": "3"
                    },
                    {
                        "desc": "Band 3",
                        "name": "Band 3",
                        "value": "4"
                    },
                    {
                        "desc": "Band 4",
                        "name": "Band 4",
                        "value": "5"
                    },
                    {
                        "desc": "Band 5",
                        "name": "Band 5",
                        "value": "6"
                    },
                    {
                        "desc": "Band 6",
                        "name": "Band 6",
                        "value": "7"
                    },
                    {
                        "desc": "Band 7",
                        "name": "Band 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereocm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Down",
                        "name": "Down",
                        "value": "0"
                    },
                    {
                        "desc": "Up",
                        "name": "Up",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoenvb": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Pink BT",
                        "name": "Pink BT",
                        "value": "1"
                    },
                    {
                        "desc": "Pink MT",
                        "name": "Pink MT",
                        "value": "2"
                    },
                    {
                        "desc": "Brown BT",
                        "name": "Brown BT",
                        "value": "3"
                    },
                    {
                        "desc": "Brown MT",
                        "name": "Brown MT",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic",
                        "name": "Classic",
                        "value": "0"
                    },
                    {
                        "desc": "Modern",
                        "name": "Modern",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "LPF",
                        "name": "LPF",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-mb-compressor-stereoscs-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mid",
                        "name": "Mid",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-multisampler-x12msel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Instruments",
                        "name": "Instruments",
                        "value": "0"
                    },
                    {
                        "desc": "Mixer",
                        "name": "Mixer",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-multisampler-x24msel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Instruments",
                        "name": "Instruments",
                        "value": "0"
                    },
                    {
                        "desc": "Mixer 0-11",
                        "name": "Mixer 0-11",
                        "value": "1"
                    },
                    {
                        "desc": "Mixer 12-23",
                        "name": "Mixer 12-23",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-multisampler-x48msel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Instruments",
                        "name": "Instruments",
                        "value": "0"
                    },
                    {
                        "desc": "Mixer 0-11",
                        "name": "Mixer 0-11",
                        "value": "1"
                    },
                    {
                        "desc": "Mixer 12-23",
                        "name": "Mixer 12-23",
                        "value": "2"
                    },
                    {
                        "desc": "Mixer 24-35",
                        "name": "Mixer 24-35",
                        "value": "3"
                    },
                    {
                        "desc": "Mixer 36-47",
                        "name": "Mixer 36-47",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-oscillator-monoscf": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Sine",
                        "name": "Sine",
                        "value": "0"
                    },
                    {
                        "desc": "Cosine",
                        "name": "Cosine",
                        "value": "1"
                    },
                    {
                        "desc": "Squared Sine",
                        "name": "Squared Sine",
                        "value": "2"
                    },
                    {
                        "desc": "Squared Cosine",
                        "name": "Squared Cosine",
                        "value": "3"
                    },
                    {
                        "desc": "Rectangular",
                        "name": "Rectangular",
                        "value": "4"
                    },
                    {
                        "desc": "Sawtooth",
                        "name": "Sawtooth",
                        "value": "5"
                    },
                    {
                        "desc": "Trapezoid",
                        "name": "Trapezoid",
                        "value": "6"
                    },
                    {
                        "desc": "Pulsetrain",
                        "name": "Pulsetrain",
                        "value": "7"
                    },
                    {
                        "desc": "Parabolic",
                        "name": "Parabolic",
                        "value": "8"
                    },
                    {
                        "desc": "Band Limited Rectangular",
                        "name": "Band Limited Rectangular",
                        "value": "9"
                    },
                    {
                        "desc": "Band Limited Sawtooth",
                        "name": "Band Limited Sawtooth",
                        "value": "10"
                    },
                    {
                        "desc": "Band Limited Trapezoid",
                        "name": "Band Limited Trapezoid",
                        "value": "11"
                    },
                    {
                        "desc": "Band Limited Pulsetrain",
                        "name": "Band Limited Pulsetrain",
                        "value": "12"
                    },
                    {
                        "desc": "Band Limited Parabolic",
                        "name": "Band Limited Parabolic",
                        "value": "13"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-oscillator-monoscm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Add",
                        "name": "Add",
                        "value": "0"
                    },
                    {
                        "desc": "Multiply",
                        "name": "Multiply",
                        "value": "1"
                    },
                    {
                        "desc": "Replace",
                        "name": "Replace",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-oscillator-monoscom": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    },
                    {
                        "desc": "x6",
                        "name": "x6",
                        "value": "4"
                    },
                    {
                        "desc": "x8",
                        "name": "x8",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-oscillator-monoscr": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Wave DC",
                        "name": "Wave DC",
                        "value": "0"
                    },
                    {
                        "desc": "Zero DC",
                        "name": "Zero DC",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfml-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfmr-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters Left 0-7",
                        "name": "Filters Left 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters Right 0-7",
                        "name": "Filters Right 0-7",
                        "value": "1"
                    },
                    {
                        "desc": "Filters Left 8-15",
                        "name": "Filters Left 8-15",
                        "value": "2"
                    },
                    {
                        "desc": "Filters Right 8-15",
                        "name": "Filters Right 8-15",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftl-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrftr-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsl-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-lrsr-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters 0-7",
                        "name": "Filters 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters 8-15",
                        "name": "Filters 8-15",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monoft-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-monos-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfmm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfms-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters Middle 0-7",
                        "name": "Filters Middle 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters Side 0-7",
                        "name": "Filters Side 0-7",
                        "value": "1"
                    },
                    {
                        "desc": "Filters Middle 8-15",
                        "name": "Filters Middle 8-15",
                        "value": "2"
                    },
                    {
                        "desc": "Filters Side 8-15",
                        "name": "Filters Side 8-15",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msftm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msfts-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-mssm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-msss-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters 0-7",
                        "name": "Filters 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters 8-15",
                        "name": "Filters 8-15",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereoft-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x16-stereos-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfml-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfmr-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters Left 0-7",
                        "name": "Filters Left 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters Right 0-7",
                        "name": "Filters Right 0-7",
                        "value": "1"
                    },
                    {
                        "desc": "Filters Left 8-15",
                        "name": "Filters Left 8-15",
                        "value": "2"
                    },
                    {
                        "desc": "Filters Right 8-15",
                        "name": "Filters Right 8-15",
                        "value": "3"
                    },
                    {
                        "desc": "Filters Left 16-23",
                        "name": "Filters Left 16-23",
                        "value": "4"
                    },
                    {
                        "desc": "Filters Right 16-23",
                        "name": "Filters Right 16-23",
                        "value": "5"
                    },
                    {
                        "desc": "Filters Left 24-31",
                        "name": "Filters Left 24-31",
                        "value": "6"
                    },
                    {
                        "desc": "Filters Right 24-31",
                        "name": "Filters Right 24-31",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftl-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrftr-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsl-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-lrsr-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters 0-7",
                        "name": "Filters 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters 8-15",
                        "name": "Filters 8-15",
                        "value": "1"
                    },
                    {
                        "desc": "Filters 16-23",
                        "name": "Filters 16-23",
                        "value": "2"
                    },
                    {
                        "desc": "Filters 24-31",
                        "name": "Filters 24-31",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monoft-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-monos-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfmm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfms-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters Mid 0-7",
                        "name": "Filters Mid 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters Side 0-7",
                        "name": "Filters Side 0-7",
                        "value": "1"
                    },
                    {
                        "desc": "Filters Mid 8-15",
                        "name": "Filters Mid 8-15",
                        "value": "2"
                    },
                    {
                        "desc": "Filters Side 8-15",
                        "name": "Filters Side 8-15",
                        "value": "3"
                    },
                    {
                        "desc": "Filters Mid 16-23",
                        "name": "Filters Mid 16-23",
                        "value": "4"
                    },
                    {
                        "desc": "Filters Side 16-23",
                        "name": "Filters Side 16-23",
                        "value": "5"
                    },
                    {
                        "desc": "Filters Mid 24-31",
                        "name": "Filters Mid 24-31",
                        "value": "6"
                    },
                    {
                        "desc": "Filters Side 24-31",
                        "name": "Filters Side 24-31",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msftm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msfts-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msmode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-mssm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-msss-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Post-eq",
                        "name": "Post-eq",
                        "value": "1"
                    },
                    {
                        "desc": "Pre-eq",
                        "name": "Pre-eq",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofm-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "RLC (BT)",
                        "name": "RLC (BT)",
                        "value": "0"
                    },
                    {
                        "desc": "RLC (MT)",
                        "name": "RLC (MT)",
                        "value": "1"
                    },
                    {
                        "desc": "BWC (BT)",
                        "name": "BWC (BT)",
                        "value": "2"
                    },
                    {
                        "desc": "BWC (MT)",
                        "name": "BWC (MT)",
                        "value": "3"
                    },
                    {
                        "desc": "LRX (BT)",
                        "name": "LRX (BT)",
                        "value": "4"
                    },
                    {
                        "desc": "LRX (MT)",
                        "name": "LRX (MT)",
                        "value": "5"
                    },
                    {
                        "desc": "APO (DR)",
                        "name": "APO (DR)",
                        "value": "6"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereofsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Filters 0-7",
                        "name": "Filters 0-7",
                        "value": "0"
                    },
                    {
                        "desc": "Filters 8-15",
                        "name": "Filters 8-15",
                        "value": "1"
                    },
                    {
                        "desc": "Filters 16-23",
                        "name": "Filters 16-23",
                        "value": "2"
                    },
                    {
                        "desc": "Filters 24-31",
                        "name": "Filters 24-31",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereoft-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Bell",
                        "name": "Bell",
                        "value": "1"
                    },
                    {
                        "desc": "Hi-pass",
                        "name": "Hi-pass",
                        "value": "2"
                    },
                    {
                        "desc": "Hi-shelf",
                        "name": "Hi-shelf",
                        "value": "3"
                    },
                    {
                        "desc": "Lo-pass",
                        "name": "Lo-pass",
                        "value": "4"
                    },
                    {
                        "desc": "Lo-shelf",
                        "name": "Lo-shelf",
                        "value": "5"
                    },
                    {
                        "desc": "Notch",
                        "name": "Notch",
                        "value": "6"
                    },
                    {
                        "desc": "Resonance",
                        "name": "Resonance",
                        "value": "7"
                    },
                    {
                        "desc": "Allpass",
                        "name": "Allpass",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "IIR",
                        "name": "IIR",
                        "value": "0"
                    },
                    {
                        "desc": "FIR",
                        "name": "FIR",
                        "value": "1"
                    },
                    {
                        "desc": "FFT",
                        "name": "FFT",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-16": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-17": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-18": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-19": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-20": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-21": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-22": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-23": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-24": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-25": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-26": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-27": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-28": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-29": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-30": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-31": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-para-equalizer-x32-stereos-9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "x1",
                        "name": "x1",
                        "value": "0"
                    },
                    {
                        "desc": "x2",
                        "name": "x2",
                        "value": "1"
                    },
                    {
                        "desc": "x3",
                        "name": "x3",
                        "value": "2"
                    },
                    {
                        "desc": "x4",
                        "name": "x4",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-profiler-monoscra": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "EDT0",
                        "name": "EDT0",
                        "value": "0"
                    },
                    {
                        "desc": "EDT1",
                        "name": "EDT1",
                        "value": "1"
                    },
                    {
                        "desc": "RT10",
                        "name": "RT10",
                        "value": "2"
                    },
                    {
                        "desc": "RT20",
                        "name": "RT20",
                        "value": "3"
                    },
                    {
                        "desc": "RT30",
                        "name": "RT30",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-profiler-monoscsv": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "LTI Auto (*.wav)",
                        "name": "LTI Auto (*.wav)",
                        "value": "0"
                    },
                    {
                        "desc": "LTI RT (*.wav)",
                        "name": "LTI RT (*.wav)",
                        "value": "1"
                    },
                    {
                        "desc": "LTI Coarse (*.wav)",
                        "name": "LTI Coarse (*.wav)",
                        "value": "2"
                    },
                    {
                        "desc": "LTI All (*.wav)",
                        "name": "LTI All (*.wav)",
                        "value": "3"
                    },
                    {
                        "desc": "All Info (*.lspc)",
                        "name": "All Info (*.lspc)",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-profiler-monostld": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Idle",
                        "name": "Idle",
                        "value": "0"
                    },
                    {
                        "desc": "Calibration",
                        "name": "Calibration",
                        "value": "1"
                    },
                    {
                        "desc": "Latency Detection",
                        "name": "Latency Detection",
                        "value": "2"
                    },
                    {
                        "desc": "Preprocessing",
                        "name": "Preprocessing",
                        "value": "3"
                    },
                    {
                        "desc": "Waiting",
                        "name": "Waiting",
                        "value": "4"
                    },
                    {
                        "desc": "Recording",
                        "name": "Recording",
                        "value": "5"
                    },
                    {
                        "desc": "Convolving",
                        "name": "Convolving",
                        "value": "6"
                    },
                    {
                        "desc": "Postprocessing",
                        "name": "Postprocessing",
                        "value": "7"
                    },
                    {
                        "desc": "Saving",
                        "name": "Saving",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-profiler-stereoscra": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "EDT0",
                        "name": "EDT0",
                        "value": "0"
                    },
                    {
                        "desc": "EDT1",
                        "name": "EDT1",
                        "value": "1"
                    },
                    {
                        "desc": "RT10",
                        "name": "RT10",
                        "value": "2"
                    },
                    {
                        "desc": "RT20",
                        "name": "RT20",
                        "value": "3"
                    },
                    {
                        "desc": "RT30",
                        "name": "RT30",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-profiler-stereoscsv": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "LTI Auto (*.wav)",
                        "name": "LTI Auto (*.wav)",
                        "value": "0"
                    },
                    {
                        "desc": "LTI RT (*.wav)",
                        "name": "LTI RT (*.wav)",
                        "value": "1"
                    },
                    {
                        "desc": "LTI Coarse (*.wav)",
                        "name": "LTI Coarse (*.wav)",
                        "value": "2"
                    },
                    {
                        "desc": "LTI All (*.wav)",
                        "name": "LTI All (*.wav)",
                        "value": "3"
                    },
                    {
                        "desc": "All Info (*.lspc)",
                        "name": "All Info (*.lspc)",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-profiler-stereostld": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Idle",
                        "name": "Idle",
                        "value": "0"
                    },
                    {
                        "desc": "Calibration",
                        "name": "Calibration",
                        "value": "1"
                    },
                    {
                        "desc": "Latency Detection",
                        "name": "Latency Detection",
                        "value": "2"
                    },
                    {
                        "desc": "Preprocessing",
                        "name": "Preprocessing",
                        "value": "3"
                    },
                    {
                        "desc": "Waiting",
                        "name": "Waiting",
                        "value": "4"
                    },
                    {
                        "desc": "Recording",
                        "name": "Recording",
                        "value": "5"
                    },
                    {
                        "desc": "Convolving",
                        "name": "Convolving",
                        "value": "6"
                    },
                    {
                        "desc": "Postprocessing",
                        "name": "Postprocessing",
                        "value": "7"
                    },
                    {
                        "desc": "Saving",
                        "name": "Saving",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "4"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "5"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "6"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocsf0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocsf1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocsf2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocsf3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocst0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocst1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocst2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monocst3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoeditor": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Source editor",
                        "name": "Source editor",
                        "value": "0"
                    },
                    {
                        "desc": "Capture editor",
                        "name": "Capture editor",
                        "value": "1"
                    },
                    {
                        "desc": "Object editor",
                        "name": "Object editor",
                        "value": "2"
                    },
                    {
                        "desc": "Material editor",
                        "name": "Material editor",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "512",
                        "name": "512",
                        "value": "0"
                    },
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "1"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "2"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "3"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "4"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "5"
                    },
                    {
                        "desc": "32767",
                        "name": "32767",
                        "value": "6"
                    },
                    {
                        "desc": "65536",
                        "name": "65536",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monohcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoifo": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "+X forward, +Y up",
                        "name": "+X forward, +Y up",
                        "value": "0"
                    },
                    {
                        "desc": "+X forward, +Z up",
                        "name": "+X forward, +Z up",
                        "value": "1"
                    },
                    {
                        "desc": "+X forward, -Y up",
                        "name": "+X forward, -Y up",
                        "value": "2"
                    },
                    {
                        "desc": "+X forward, -Z up",
                        "name": "+X forward, -Z up",
                        "value": "3"
                    },
                    {
                        "desc": "-X forward, +Y up",
                        "name": "-X forward, +Y up",
                        "value": "4"
                    },
                    {
                        "desc": "-X forward, +Z up",
                        "name": "-X forward, +Z up",
                        "value": "5"
                    },
                    {
                        "desc": "-X forward, -Y up",
                        "name": "-X forward, -Y up",
                        "value": "6"
                    },
                    {
                        "desc": "-X forward, -Z up",
                        "name": "-X forward, -Z up",
                        "value": "7"
                    },
                    {
                        "desc": "+Y forward, +X up",
                        "name": "+Y forward, +X up",
                        "value": "8"
                    },
                    {
                        "desc": "+Y forward, +Z up",
                        "name": "+Y forward, +Z up",
                        "value": "9"
                    },
                    {
                        "desc": "+Y forward, -X up",
                        "name": "+Y forward, -X up",
                        "value": "10"
                    },
                    {
                        "desc": "+Y forward, -Z up",
                        "name": "+Y forward, -Z up",
                        "value": "11"
                    },
                    {
                        "desc": "-Y forward, +X up",
                        "name": "-Y forward, +X up",
                        "value": "12"
                    },
                    {
                        "desc": "-Y forward, +Z up",
                        "name": "-Y forward, +Z up",
                        "value": "13"
                    },
                    {
                        "desc": "-Y forward, -X up",
                        "name": "-Y forward, -X up",
                        "value": "14"
                    },
                    {
                        "desc": "-Y forward, -Z up",
                        "name": "-Y forward, -Z up",
                        "value": "15"
                    },
                    {
                        "desc": "+Z forward, +X up",
                        "name": "+Z forward, +X up",
                        "value": "16"
                    },
                    {
                        "desc": "+Z forward, +Y up",
                        "name": "+Z forward, +Y up",
                        "value": "17"
                    },
                    {
                        "desc": "+Z forward, -X up",
                        "name": "+Z forward, -X up",
                        "value": "18"
                    },
                    {
                        "desc": "+Z forward, -Y up",
                        "name": "+Z forward, -Y up",
                        "value": "19"
                    },
                    {
                        "desc": "-Z forward, +X up",
                        "name": "-Z forward, +X up",
                        "value": "20"
                    },
                    {
                        "desc": "-Z forward, +Y up",
                        "name": "-Z forward, +Y up",
                        "value": "21"
                    },
                    {
                        "desc": "-Z forward, -X up",
                        "name": "-Z forward, -X up",
                        "value": "22"
                    },
                    {
                        "desc": "-Z forward, -Y up",
                        "name": "-Z forward, -Y up",
                        "value": "23"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monolcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosccf-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscf-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscl-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscmd-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoscsd-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosignal": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Convolvers",
                        "name": "Convolvers",
                        "value": "0"
                    },
                    {
                        "desc": "IR Equalizer",
                        "name": "IR Equalizer",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monosscf-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monossel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "4"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "5"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "6"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-monoview": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Room browser",
                        "name": "Room browser",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "4"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "5"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "6"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocsf0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocsf1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocsf2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocsf3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "None",
                        "name": "None",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocst0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocst1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocst2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereocst3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "0"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoeditor": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Source editor",
                        "name": "Source editor",
                        "value": "0"
                    },
                    {
                        "desc": "Capture editor",
                        "name": "Capture editor",
                        "value": "1"
                    },
                    {
                        "desc": "Object editor",
                        "name": "Object editor",
                        "value": "2"
                    },
                    {
                        "desc": "Material editor",
                        "name": "Material editor",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereofft": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "512",
                        "name": "512",
                        "value": "0"
                    },
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "1"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "2"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "3"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "4"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "5"
                    },
                    {
                        "desc": "32767",
                        "name": "32767",
                        "value": "6"
                    },
                    {
                        "desc": "65536",
                        "name": "65536",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereohcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoifo": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "+X forward, +Y up",
                        "name": "+X forward, +Y up",
                        "value": "0"
                    },
                    {
                        "desc": "+X forward, +Z up",
                        "name": "+X forward, +Z up",
                        "value": "1"
                    },
                    {
                        "desc": "+X forward, -Y up",
                        "name": "+X forward, -Y up",
                        "value": "2"
                    },
                    {
                        "desc": "+X forward, -Z up",
                        "name": "+X forward, -Z up",
                        "value": "3"
                    },
                    {
                        "desc": "-X forward, +Y up",
                        "name": "-X forward, +Y up",
                        "value": "4"
                    },
                    {
                        "desc": "-X forward, +Z up",
                        "name": "-X forward, +Z up",
                        "value": "5"
                    },
                    {
                        "desc": "-X forward, -Y up",
                        "name": "-X forward, -Y up",
                        "value": "6"
                    },
                    {
                        "desc": "-X forward, -Z up",
                        "name": "-X forward, -Z up",
                        "value": "7"
                    },
                    {
                        "desc": "+Y forward, +X up",
                        "name": "+Y forward, +X up",
                        "value": "8"
                    },
                    {
                        "desc": "+Y forward, +Z up",
                        "name": "+Y forward, +Z up",
                        "value": "9"
                    },
                    {
                        "desc": "+Y forward, -X up",
                        "name": "+Y forward, -X up",
                        "value": "10"
                    },
                    {
                        "desc": "+Y forward, -Z up",
                        "name": "+Y forward, -Z up",
                        "value": "11"
                    },
                    {
                        "desc": "-Y forward, +X up",
                        "name": "-Y forward, +X up",
                        "value": "12"
                    },
                    {
                        "desc": "-Y forward, +Z up",
                        "name": "-Y forward, +Z up",
                        "value": "13"
                    },
                    {
                        "desc": "-Y forward, -X up",
                        "name": "-Y forward, -X up",
                        "value": "14"
                    },
                    {
                        "desc": "-Y forward, -Z up",
                        "name": "-Y forward, -Z up",
                        "value": "15"
                    },
                    {
                        "desc": "+Z forward, +X up",
                        "name": "+Z forward, +X up",
                        "value": "16"
                    },
                    {
                        "desc": "+Z forward, +Y up",
                        "name": "+Z forward, +Y up",
                        "value": "17"
                    },
                    {
                        "desc": "+Z forward, -X up",
                        "name": "+Z forward, -X up",
                        "value": "18"
                    },
                    {
                        "desc": "+Z forward, -Y up",
                        "name": "+Z forward, -Y up",
                        "value": "19"
                    },
                    {
                        "desc": "-Z forward, +X up",
                        "name": "-Z forward, +X up",
                        "value": "20"
                    },
                    {
                        "desc": "-Z forward, +Y up",
                        "name": "-Z forward, +Y up",
                        "value": "21"
                    },
                    {
                        "desc": "-Z forward, -X up",
                        "name": "-Z forward, -X up",
                        "value": "22"
                    },
                    {
                        "desc": "-Z forward, -Y up",
                        "name": "-Z forward, -Y up",
                        "value": "23"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereolcm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "off",
                        "name": "off",
                        "value": "0"
                    },
                    {
                        "desc": "6 dB/oct",
                        "name": "6 dB/oct",
                        "value": "1"
                    },
                    {
                        "desc": "12 dB/oct",
                        "name": "12 dB/oct",
                        "value": "2"
                    },
                    {
                        "desc": "18 dB/oct",
                        "name": "18 dB/oct",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosccf-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Mono",
                        "name": "Mono",
                        "value": "0"
                    },
                    {
                        "desc": "XY",
                        "name": "XY",
                        "value": "1"
                    },
                    {
                        "desc": "AB",
                        "name": "AB",
                        "value": "2"
                    },
                    {
                        "desc": "ORTF",
                        "name": "ORTF",
                        "value": "3"
                    },
                    {
                        "desc": "MS",
                        "name": "MS",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscf-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscl-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Any",
                        "name": "Any",
                        "value": "0"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "1"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "2"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "3"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "4"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "5"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "6"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "7"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "8"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "9"
                    },
                    {
                        "desc": "9",
                        "name": "9",
                        "value": "10"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "11"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "12"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "13"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "14"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "15"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "16"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscmd-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Cardioid",
                        "name": "Cardioid",
                        "value": "0"
                    },
                    {
                        "desc": "Supercardioid",
                        "name": "Supercardioid",
                        "value": "1"
                    },
                    {
                        "desc": "Hypercardioid",
                        "name": "Hypercardioid",
                        "value": "2"
                    },
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "3"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "4"
                    },
                    {
                        "desc": "Omnidirectional",
                        "name": "Omnidirectional",
                        "value": "5"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoscsd-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Bidirectional",
                        "name": "Bidirectional",
                        "value": "0"
                    },
                    {
                        "desc": "8-directional",
                        "name": "8-directional",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosignal": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Convolvers",
                        "name": "Convolvers",
                        "value": "0"
                    },
                    {
                        "desc": "IR Equalizer",
                        "name": "IR Equalizer",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereosscf-7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Triangle",
                        "name": "Triangle",
                        "value": "0"
                    },
                    {
                        "desc": "Tetrahedron",
                        "name": "Tetrahedron",
                        "value": "1"
                    },
                    {
                        "desc": "Octahedron",
                        "name": "Octahedron",
                        "value": "2"
                    },
                    {
                        "desc": "Box",
                        "name": "Box",
                        "value": "3"
                    },
                    {
                        "desc": "Icosahedron",
                        "name": "Icosahedron",
                        "value": "4"
                    },
                    {
                        "desc": "Cylinder",
                        "name": "Cylinder",
                        "value": "5"
                    },
                    {
                        "desc": "Cone",
                        "name": "Cone",
                        "value": "6"
                    },
                    {
                        "desc": "Octasphere",
                        "name": "Octasphere",
                        "value": "7"
                    },
                    {
                        "desc": "Icosphere",
                        "name": "Icosphere",
                        "value": "8"
                    },
                    {
                        "desc": "Flat spot",
                        "name": "Flat spot",
                        "value": "9"
                    },
                    {
                        "desc": "Cylindrical spot",
                        "name": "Cylindrical spot",
                        "value": "10"
                    },
                    {
                        "desc": "Spherical spot",
                        "name": "Spherical spot",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereossel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "4"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "5"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "6"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "7"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-room-builder-stereoview": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Room browser",
                        "name": "Room browser",
                        "value": "0"
                    },
                    {
                        "desc": "Sample 0",
                        "name": "Sample 0",
                        "value": "1"
                    },
                    {
                        "desc": "Sample 1",
                        "name": "Sample 1",
                        "value": "2"
                    },
                    {
                        "desc": "Sample 2",
                        "name": "Sample 2",
                        "value": "3"
                    },
                    {
                        "desc": "Sample 3",
                        "name": "Sample 3",
                        "value": "4"
                    },
                    {
                        "desc": "Sample 4",
                        "name": "Sample 4",
                        "value": "5"
                    },
                    {
                        "desc": "Sample 5",
                        "name": "Sample 5",
                        "value": "6"
                    },
                    {
                        "desc": "Sample 6",
                        "name": "Sample 6",
                        "value": "7"
                    },
                    {
                        "desc": "Sample 7",
                        "name": "Sample 7",
                        "value": "8"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-sampler-monochan": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "01",
                        "name": "01",
                        "value": "0"
                    },
                    {
                        "desc": "02",
                        "name": "02",
                        "value": "1"
                    },
                    {
                        "desc": "03",
                        "name": "03",
                        "value": "2"
                    },
                    {
                        "desc": "04",
                        "name": "04",
                        "value": "3"
                    },
                    {
                        "desc": "05",
                        "name": "05",
                        "value": "4"
                    },
                    {
                        "desc": "06",
                        "name": "06",
                        "value": "5"
                    },
                    {
                        "desc": "07",
                        "name": "07",
                        "value": "6"
                    },
                    {
                        "desc": "08",
                        "name": "08",
                        "value": "7"
                    },
                    {
                        "desc": "09",
                        "name": "09",
                        "value": "8"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "9"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "10"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "11"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "12"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "13"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "14"
                    },
                    {
                        "desc": "16",
                        "name": "16",
                        "value": "15"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-sampler-mononote": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "C",
                        "name": "C",
                        "value": "0"
                    },
                    {
                        "desc": "C#",
                        "name": "C#",
                        "value": "1"
                    },
                    {
                        "desc": "D",
                        "name": "D",
                        "value": "2"
                    },
                    {
                        "desc": "D#",
                        "name": "D#",
                        "value": "3"
                    },
                    {
                        "desc": "E",
                        "name": "E",
                        "value": "4"
                    },
                    {
                        "desc": "F",
                        "name": "F",
                        "value": "5"
                    },
                    {
                        "desc": "F#",
                        "name": "F#",
                        "value": "6"
                    },
                    {
                        "desc": "G",
                        "name": "G",
                        "value": "7"
                    },
                    {
                        "desc": "G#",
                        "name": "G#",
                        "value": "8"
                    },
                    {
                        "desc": "A",
                        "name": "A",
                        "value": "9"
                    },
                    {
                        "desc": "A#",
                        "name": "A#",
                        "value": "10"
                    },
                    {
                        "desc": "B",
                        "name": "B",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-sampler-monooct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "-2",
                        "name": "-2",
                        "value": "0"
                    },
                    {
                        "desc": "-1",
                        "name": "-1",
                        "value": "1"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "2"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "3"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "4"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "5"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "6"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "7"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "8"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "9"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "10"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-sampler-stereochan": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "01",
                        "name": "01",
                        "value": "0"
                    },
                    {
                        "desc": "02",
                        "name": "02",
                        "value": "1"
                    },
                    {
                        "desc": "03",
                        "name": "03",
                        "value": "2"
                    },
                    {
                        "desc": "04",
                        "name": "04",
                        "value": "3"
                    },
                    {
                        "desc": "05",
                        "name": "05",
                        "value": "4"
                    },
                    {
                        "desc": "06",
                        "name": "06",
                        "value": "5"
                    },
                    {
                        "desc": "07",
                        "name": "07",
                        "value": "6"
                    },
                    {
                        "desc": "08",
                        "name": "08",
                        "value": "7"
                    },
                    {
                        "desc": "09",
                        "name": "09",
                        "value": "8"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "9"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "10"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "11"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "12"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "13"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "14"
                    },
                    {
                        "desc": "16",
                        "name": "16",
                        "value": "15"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-sampler-stereonote": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "C",
                        "name": "C",
                        "value": "0"
                    },
                    {
                        "desc": "C#",
                        "name": "C#",
                        "value": "1"
                    },
                    {
                        "desc": "D",
                        "name": "D",
                        "value": "2"
                    },
                    {
                        "desc": "D#",
                        "name": "D#",
                        "value": "3"
                    },
                    {
                        "desc": "E",
                        "name": "E",
                        "value": "4"
                    },
                    {
                        "desc": "F",
                        "name": "F",
                        "value": "5"
                    },
                    {
                        "desc": "F#",
                        "name": "F#",
                        "value": "6"
                    },
                    {
                        "desc": "G",
                        "name": "G",
                        "value": "7"
                    },
                    {
                        "desc": "G#",
                        "name": "G#",
                        "value": "8"
                    },
                    {
                        "desc": "A",
                        "name": "A",
                        "value": "9"
                    },
                    {
                        "desc": "A#",
                        "name": "A#",
                        "value": "10"
                    },
                    {
                        "desc": "B",
                        "name": "B",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-sampler-stereooct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "-2",
                        "name": "-2",
                        "value": "0"
                    },
                    {
                        "desc": "-1",
                        "name": "-1",
                        "value": "1"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "2"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "3"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "4"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "5"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "6"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "7"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "8"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "9"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "10"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monodm9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-monolsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0-4",
                        "name": "0-4",
                        "value": "0"
                    },
                    {
                        "desc": "5-7",
                        "name": "5-7",
                        "value": "1"
                    },
                    {
                        "desc": "8-11",
                        "name": "8-11",
                        "value": "2"
                    },
                    {
                        "desc": "12-15",
                        "name": "12-15",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm0": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm1": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm10": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm11": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm12": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm13": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm14": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm15": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm2": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm3": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm4": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm5": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm6": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm7": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm8": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereodm9": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Off",
                        "name": "Off",
                        "value": "0"
                    },
                    {
                        "desc": "Time",
                        "name": "Time",
                        "value": "1"
                    },
                    {
                        "desc": "Distance",
                        "name": "Distance",
                        "value": "2"
                    },
                    {
                        "desc": "Notes",
                        "name": "Notes",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-slap-delay-stereolsel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0-4",
                        "name": "0-4",
                        "value": "0"
                    },
                    {
                        "desc": "5-7",
                        "name": "5-7",
                        "value": "1"
                    },
                    {
                        "desc": "8-11",
                        "name": "8-11",
                        "value": "2"
                    },
                    {
                        "desc": "12-15",
                        "name": "12-15",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1chn": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "0"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1env": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Purple noise",
                        "name": "Purple noise",
                        "value": "0"
                    },
                    {
                        "desc": "Blue noise",
                        "name": "Blue noise",
                        "value": "1"
                    },
                    {
                        "desc": "White noise",
                        "name": "White noise",
                        "value": "2"
                    },
                    {
                        "desc": "Pink noise",
                        "name": "Pink noise",
                        "value": "3"
                    },
                    {
                        "desc": "Brown noise",
                        "name": "Brown noise",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1mode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Analyzer",
                        "name": "Analyzer",
                        "value": "0"
                    },
                    {
                        "desc": "Mastering",
                        "name": "Mastering",
                        "value": "1"
                    },
                    {
                        "desc": "Spectralizer",
                        "name": "Spectralizer",
                        "value": "2"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1spm": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Rainbow",
                        "name": "Rainbow",
                        "value": "0"
                    },
                    {
                        "desc": "Fog",
                        "name": "Fog",
                        "value": "1"
                    },
                    {
                        "desc": "Color",
                        "name": "Color",
                        "value": "2"
                    },
                    {
                        "desc": "Lightning",
                        "name": "Lightning",
                        "value": "3"
                    },
                    {
                        "desc": "Lightness",
                        "name": "Lightness",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1tol": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "1024",
                        "name": "1024",
                        "value": "0"
                    },
                    {
                        "desc": "2048",
                        "name": "2048",
                        "value": "1"
                    },
                    {
                        "desc": "4096",
                        "name": "4096",
                        "value": "2"
                    },
                    {
                        "desc": "8192",
                        "name": "8192",
                        "value": "3"
                    },
                    {
                        "desc": "16384",
                        "name": "16384",
                        "value": "4"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-spectrum-analyzer-x1wnd": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Hann",
                        "name": "Hann",
                        "value": "0"
                    },
                    {
                        "desc": "Hamming",
                        "name": "Hamming",
                        "value": "1"
                    },
                    {
                        "desc": "Blackman",
                        "name": "Blackman",
                        "value": "2"
                    },
                    {
                        "desc": "Lanczos",
                        "name": "Lanczos",
                        "value": "3"
                    },
                    {
                        "desc": "Gaussian",
                        "name": "Gaussian",
                        "value": "4"
                    },
                    {
                        "desc": "Poisson",
                        "name": "Poisson",
                        "value": "5"
                    },
                    {
                        "desc": "Parzen",
                        "name": "Parzen",
                        "value": "6"
                    },
                    {
                        "desc": "Tukey",
                        "name": "Tukey",
                        "value": "7"
                    },
                    {
                        "desc": "Welch",
                        "name": "Welch",
                        "value": "8"
                    },
                    {
                        "desc": "Nuttall",
                        "name": "Nuttall",
                        "value": "9"
                    },
                    {
                        "desc": "Blackman-Nuttall",
                        "name": "Blackman-Nuttall",
                        "value": "10"
                    },
                    {
                        "desc": "Blackman-Harris",
                        "name": "Blackman-Harris",
                        "value": "11"
                    },
                    {
                        "desc": "Hann-Poisson",
                        "name": "Hann-Poisson",
                        "value": "12"
                    },
                    {
                        "desc": "Bartlett-Hann",
                        "name": "Bartlett-Hann",
                        "value": "13"
                    },
                    {
                        "desc": "Bartlett-Fejer",
                        "name": "Bartlett-Fejer",
                        "value": "14"
                    },
                    {
                        "desc": "Triangular",
                        "name": "Triangular",
                        "value": "15"
                    },
                    {
                        "desc": "Rectangular",
                        "name": "Rectangular",
                        "value": "16"
                    },
                    {
                        "desc": "Flat top",
                        "name": "Flat top",
                        "value": "17"
                    },
                    {
                        "desc": "Cosine",
                        "name": "Cosine",
                        "value": "18"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-monoasel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Trigger",
                        "name": "Trigger",
                        "value": "0"
                    },
                    {
                        "desc": "Instrument",
                        "name": "Instrument",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-monochan": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "01",
                        "name": "01",
                        "value": "0"
                    },
                    {
                        "desc": "02",
                        "name": "02",
                        "value": "1"
                    },
                    {
                        "desc": "03",
                        "name": "03",
                        "value": "2"
                    },
                    {
                        "desc": "04",
                        "name": "04",
                        "value": "3"
                    },
                    {
                        "desc": "05",
                        "name": "05",
                        "value": "4"
                    },
                    {
                        "desc": "06",
                        "name": "06",
                        "value": "5"
                    },
                    {
                        "desc": "07",
                        "name": "07",
                        "value": "6"
                    },
                    {
                        "desc": "08",
                        "name": "08",
                        "value": "7"
                    },
                    {
                        "desc": "09",
                        "name": "09",
                        "value": "8"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "9"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "10"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "11"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "12"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "13"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "14"
                    },
                    {
                        "desc": "16",
                        "name": "16",
                        "value": "15"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-mononote": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "C",
                        "name": "C",
                        "value": "0"
                    },
                    {
                        "desc": "C#",
                        "name": "C#",
                        "value": "1"
                    },
                    {
                        "desc": "D",
                        "name": "D",
                        "value": "2"
                    },
                    {
                        "desc": "D#",
                        "name": "D#",
                        "value": "3"
                    },
                    {
                        "desc": "E",
                        "name": "E",
                        "value": "4"
                    },
                    {
                        "desc": "F",
                        "name": "F",
                        "value": "5"
                    },
                    {
                        "desc": "F#",
                        "name": "F#",
                        "value": "6"
                    },
                    {
                        "desc": "G",
                        "name": "G",
                        "value": "7"
                    },
                    {
                        "desc": "G#",
                        "name": "G#",
                        "value": "8"
                    },
                    {
                        "desc": "A",
                        "name": "A",
                        "value": "9"
                    },
                    {
                        "desc": "A#",
                        "name": "A#",
                        "value": "10"
                    },
                    {
                        "desc": "B",
                        "name": "B",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-monooct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "-2",
                        "name": "-2",
                        "value": "0"
                    },
                    {
                        "desc": "-1",
                        "name": "-1",
                        "value": "1"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "2"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "3"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "4"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "5"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "6"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "7"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "8"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "9"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "10"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereoasel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Trigger",
                        "name": "Trigger",
                        "value": "0"
                    },
                    {
                        "desc": "Instrument",
                        "name": "Instrument",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereochan": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "01",
                        "name": "01",
                        "value": "0"
                    },
                    {
                        "desc": "02",
                        "name": "02",
                        "value": "1"
                    },
                    {
                        "desc": "03",
                        "name": "03",
                        "value": "2"
                    },
                    {
                        "desc": "04",
                        "name": "04",
                        "value": "3"
                    },
                    {
                        "desc": "05",
                        "name": "05",
                        "value": "4"
                    },
                    {
                        "desc": "06",
                        "name": "06",
                        "value": "5"
                    },
                    {
                        "desc": "07",
                        "name": "07",
                        "value": "6"
                    },
                    {
                        "desc": "08",
                        "name": "08",
                        "value": "7"
                    },
                    {
                        "desc": "09",
                        "name": "09",
                        "value": "8"
                    },
                    {
                        "desc": "10",
                        "name": "10",
                        "value": "9"
                    },
                    {
                        "desc": "11",
                        "name": "11",
                        "value": "10"
                    },
                    {
                        "desc": "12",
                        "name": "12",
                        "value": "11"
                    },
                    {
                        "desc": "13",
                        "name": "13",
                        "value": "12"
                    },
                    {
                        "desc": "14",
                        "name": "14",
                        "value": "13"
                    },
                    {
                        "desc": "15",
                        "name": "15",
                        "value": "14"
                    },
                    {
                        "desc": "16",
                        "name": "16",
                        "value": "15"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereonote": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "C",
                        "name": "C",
                        "value": "0"
                    },
                    {
                        "desc": "C#",
                        "name": "C#",
                        "value": "1"
                    },
                    {
                        "desc": "D",
                        "name": "D",
                        "value": "2"
                    },
                    {
                        "desc": "D#",
                        "name": "D#",
                        "value": "3"
                    },
                    {
                        "desc": "E",
                        "name": "E",
                        "value": "4"
                    },
                    {
                        "desc": "F",
                        "name": "F",
                        "value": "5"
                    },
                    {
                        "desc": "F#",
                        "name": "F#",
                        "value": "6"
                    },
                    {
                        "desc": "G",
                        "name": "G",
                        "value": "7"
                    },
                    {
                        "desc": "G#",
                        "name": "G#",
                        "value": "8"
                    },
                    {
                        "desc": "A",
                        "name": "A",
                        "value": "9"
                    },
                    {
                        "desc": "A#",
                        "name": "A#",
                        "value": "10"
                    },
                    {
                        "desc": "B",
                        "name": "B",
                        "value": "11"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereooct": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "-2",
                        "name": "-2",
                        "value": "0"
                    },
                    {
                        "desc": "-1",
                        "name": "-1",
                        "value": "1"
                    },
                    {
                        "desc": "0",
                        "name": "0",
                        "value": "2"
                    },
                    {
                        "desc": "1",
                        "name": "1",
                        "value": "3"
                    },
                    {
                        "desc": "2",
                        "name": "2",
                        "value": "4"
                    },
                    {
                        "desc": "3",
                        "name": "3",
                        "value": "5"
                    },
                    {
                        "desc": "4",
                        "name": "4",
                        "value": "6"
                    },
                    {
                        "desc": "5",
                        "name": "5",
                        "value": "7"
                    },
                    {
                        "desc": "6",
                        "name": "6",
                        "value": "8"
                    },
                    {
                        "desc": "7",
                        "name": "7",
                        "value": "9"
                    },
                    {
                        "desc": "8",
                        "name": "8",
                        "value": "10"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-midi-stereossrc": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-monoasel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Trigger",
                        "name": "Trigger",
                        "value": "0"
                    },
                    {
                        "desc": "Instrument",
                        "name": "Instrument",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-monomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-stereoasel": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Trigger",
                        "name": "Trigger",
                        "value": "0"
                    },
                    {
                        "desc": "Instrument",
                        "name": "Instrument",
                        "value": "1"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-stereomode": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Peak",
                        "name": "Peak",
                        "value": "0"
                    },
                    {
                        "desc": "RMS",
                        "name": "RMS",
                        "value": "1"
                    },
                    {
                        "desc": "Low-Pass",
                        "name": "Low-Pass",
                        "value": "2"
                    },
                    {
                        "desc": "Uniform",
                        "name": "Uniform",
                        "value": "3"
                    }
                ]
            },
            "lsp-plug-in-plugins-lv2-trigger-stereossrc": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "Middle",
                        "name": "Middle",
                        "value": "0"
                    },
                    {
                        "desc": "Side",
                        "name": "Side",
                        "value": "1"
                    },
                    {
                        "desc": "Left",
                        "name": "Left",
                        "value": "2"
                    },
                    {
                        "desc": "Right",
                        "name": "Right",
                        "value": "3"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mediafoundation": {
        "description": "Microsoft Media Foundation plugin",
        "elements": {
            "mfaacenc": {
                "author": "Seungha Yang <seungha@centricular.com>",
                "description": "Microsoft Media Foundation AAC Encoder",
                "hierarchy": [
                    "GstMFAacEnc",
                    "GstMFAudioEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "Media Foundation Microsoft AAC Audio Encoder MFT",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         layout: interleaved\n         format: S16LE\n       channels: { (int)1, (int)2, (int)6 }\n           rate: { (int)44100, (int)48000 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/mpeg:\n    mpegversion: 4\n  stream-format: raw\n         framed: true\n   base-profile: lc\n       channels: { (int)1, (int)2, (int)6 }\n           rate: { (int)44100, (int)48000 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Bitrate in bit/sec, (0 = auto), valid values are { 0, 96000, 128000, 160000, 192000, 576000, 768000, 960000, 1152000 }",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1152000",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "mfh264enc": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "Microsoft Media Foundation H.264 Encoder",
                "hierarchy": [
                    "GstMFH264Enc",
                    "GstMFVideoEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video/Hardware",
                "long-name": "Media Foundation Intel® Quick Sync Video H.264 Encoder MFT",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { NV12, BGRA }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h264:\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)high, (string)main, (string)baseline }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bframes": {
                        "blurb": "The maximum number of consecutive B frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "bitrate": {
                        "blurb": "Bitrate in kbit/sec",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2048",
                        "max": "4194303",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "cabac": {
                        "blurb": "Enable CABAC entropy coding",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gop-size": {
                        "blurb": "The number of pictures from one GOP header to the next, (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Enable low latency encoding",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bitrate applied when rc-mode is \"pcvbr\" in kbit/sec",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "4194303",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp": {
                        "blurb": "QP applied when rc-mode is \"qvbr\"",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "24",
                        "max": "51",
                        "min": "16",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-b": {
                        "blurb": "QP applied to B frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "26",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-i": {
                        "blurb": "QP applied to I frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "26",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-p": {
                        "blurb": "QP applied to P frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "26",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "quality-vs-speed": {
                        "blurb": "Quality and speed tradeoff, [0, 33]: Low complexity, [34, 66]: Medium complexity, [67, 100]: High complexity",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rc-mode": {
                        "blurb": "Rate Control Mode",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "uvbr (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMFH264EncRCMode",
                        "writable": true
                    },
                    "ref": {
                        "blurb": "The number of reference frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2",
                        "max": "16",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "vbv-buffer-size": {
                        "blurb": "VBV(HRD) Buffer Size in bytes (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "mfh265enc": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "Microsoft Media Foundation H.265 Encoder",
                "hierarchy": [
                    "GstMFH265Enc",
                    "GstMFVideoEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video/Hardware",
                "long-name": "Media Foundation Intel® Hardware H265 Encoder MFT",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { NV12, BGRA, P010_10LE }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h265:\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)main, (string)main-10 }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bframes": {
                        "blurb": "The maximum number of consecutive B frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "bitrate": {
                        "blurb": "Bitrate in kbit/sec",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2048",
                        "max": "4194303",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "gop-size": {
                        "blurb": "The number of pictures from one GOP header to the next, (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Enable low latency encoding",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bitrate applied when rc-mode is \"pcvbr\" in kbit/sec (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "4194303",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp": {
                        "blurb": "QP applied when rc-mode is \"qvbr\"",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "24",
                        "max": "51",
                        "min": "16",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-b": {
                        "blurb": "QP applied to B frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "26",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-i": {
                        "blurb": "QP applied to I frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "26",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-p": {
                        "blurb": "QP applied to P frames",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "26",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "quality-vs-speed": {
                        "blurb": "Quality and speed tradeoff, [0, 33]: Low complexity, [34, 66]: Medium complexity, [67, 100]: High complexity",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rc-mode": {
                        "blurb": "Rate Control Mode",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "cbr (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMFH265EncRCMode",
                        "writable": true
                    },
                    "vbv-buffer-size": {
                        "blurb": "VBV(HRD) Buffer Size in bytes (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "mfmp3enc": {
                "author": "Seungha Yang <seungha@centricular.com>",
                "description": "Microsoft Media Foundation MP3 Encoder",
                "hierarchy": [
                    "GstMFMp3Enc",
                    "GstMFAudioEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "Media Foundation MP3 Encoder ACM Wrapper MFT",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n       channels: [ 1, 2 ]\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/mpeg:\n    mpegversion: 1\n          layer: 3\n       channels: [ 1, 2 ]\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Bitrate in bit/sec, (0 = auto), valid values are { 0, 8000, 16000, 18000, 20000, 24000, 32000, 40000, 48000, 56000, 64000, 80000, 96000, 112000, 128000, 160000, 192000, 224000, 256000, 320000 }",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "320000",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "mfvideosrc": {
                "author": "Seungha Yang <seungha.yang@navercorp.com>",
                "description": "Capture video stream through Windows Media Foundation",
                "hierarchy": [
                    "GstMFVideoSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video/Hardware",
                "long-name": "Media Foundation Video Source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { BGRx, BGRA, BGR, RGB15, RGB16, VUYA, YUY2, YVYU, UYVY, NV12, YV12, I420, P010, P016, v210, v216, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nimage/jpeg:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device-index": {
                        "blurb": "The zero-based device index",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "The human-readable device name",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device-path": {
                        "blurb": "The device path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "mfvp9enc": {
                "author": "Seungha Yang <seungha@centricular.com>",
                "description": "Microsoft Media Foundation VP9 Encoder",
                "hierarchy": [
                    "GstMFVP9Enc",
                    "GstMFVideoEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video/Hardware",
                "long-name": "Media Foundation Intel® Hardware VP9 Encoder MFT",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { NV12 }\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-vp9:\n          width: [ 64, 8192 ]\n         height: [ 64, 8192 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Bitrate in kbit/sec",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2048",
                        "max": "4194303",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "gop-size": {
                        "blurb": "The number of pictures from one GOP header to the next, (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Enable low latency encoding",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bitrate applied when rc-mode is \"pcvbr\" in kbit/sec (0 = MFT default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "4194303",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rc-mode": {
                        "blurb": "Rate Control Mode",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "cbr (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMFVP9EncRCMode",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstmediafoundation",
        "license": "LGPL",
        "other-types": {
            "GstMFAudioEnc": {
                "hierarchy": [
                    "GstMFAudioEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "kind": "object"
            },
            "GstMFH264EncRCMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Constant bitrate",
                        "name": "cbr",
                        "value": "0"
                    },
                    {
                        "desc": "Peak Constrained variable bitrate",
                        "name": "pcvbr",
                        "value": "1"
                    },
                    {
                        "desc": "Unconstrained variable bitrate",
                        "name": "uvbr",
                        "value": "2"
                    },
                    {
                        "desc": "Quality-based variable bitrate",
                        "name": "qvbr",
                        "value": "3"
                    }
                ]
            },
            "GstMFH265EncRCMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Constant bitrate",
                        "name": "cbr",
                        "value": "0"
                    },
                    {
                        "desc": "Quality-based variable bitrate",
                        "name": "qvbr",
                        "value": "1"
                    }
                ]
            },
            "GstMFVP9EncRCMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Constant bitrate",
                        "name": "cbr",
                        "value": "0"
                    },
                    {
                        "desc": "Quality-based variable bitrate",
                        "name": "qvbr",
                        "value": "1"
                    }
                ]
            },
            "GstMFVideoEnc": {
                "hierarchy": [
                    "GstMFVideoEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "kind": "object"
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "microdns": {
        "description": "libmicrodns plugin library",
        "elements": {},
        "filename": "gstmicrodns",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "midi": {
        "description": "Parse MIDI files",
        "elements": {
            "midiparse": {
                "author": "Wim Taymans <wim.taymans@gmail.com>",
                "description": "Midi Parser Element",
                "hierarchy": [
                    "GstMidiParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer/Audio",
                "long-name": "MidiParse",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/midi:\naudio/riff-midi:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-midi-event:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstmidi",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mms": {
        "description": "Microsoft Multi Media Server streaming protocol support",
        "elements": {
            "mmssrc": {
                "author": "Maciej Katafiasz <mathrick@users.sourceforge.net>",
                "description": "Receive data streamed via MSFT Multi Media Server protocol",
                "hierarchy": [
                    "GstMMS",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "MMS streaming source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-ms-asf:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "connection-speed": {
                        "blurb": "Network connection speed in kbps (0 = unknown)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "location": {
                        "blurb": "Host URL to connect to. Accepted are mms://, mmsu://, mmst:// URL types",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstmms",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "modplug": {
        "description": ".MOD audio decoding",
        "elements": {
            "modplug": {
                "author": "Jeremy SIMON <jsimon13@yahoo.fr>",
                "description": "Module decoder based on modplug engine",
                "hierarchy": [
                    "GstModPlug",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "ModPlug",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-mod:\naudio/x-xm:\naudio/x-it:\naudio/x-s3m:\naudio/x-stm:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S32LE, S16LE, U8 }\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)22050, (int)44100 }\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "megabass": {
                        "blurb": "Megabass",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "megabass-amount": {
                        "blurb": "Megabass amount",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "megabass-range": {
                        "blurb": "Megabass range",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "noise-reduction": {
                        "blurb": "noise reduction",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "oversamp": {
                        "blurb": "oversamp",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "reverb": {
                        "blurb": "Reverb",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "reverb-delay": {
                        "blurb": "Reverb delay",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "200",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "reverb-depth": {
                        "blurb": "Reverb depth",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "songname": {
                        "blurb": "The song name",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "surround": {
                        "blurb": "Surround",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "surround-delay": {
                        "blurb": "Surround delay",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "20",
                        "max": "40",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "surround-depth": {
                        "blurb": "Surround depth",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "20",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstmodplug",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mpeg2enc": {
        "description": "High-quality MPEG-1/2 video encoder",
        "elements": {
            "mpeg2enc": {
                "author": "Andrew Stevens <andrew.stevens@nexgo.de>\nRonald Bultje <rbultje@ronald.bitfreak.net>",
                "description": "High-quality MPEG-1/2 video encoder",
                "hierarchy": [
                    "GstMpeg2enc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video",
                "long-name": "mpeg2enc video encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: I420\n          width: [ 16, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: { (fraction)24000/1001, (fraction)24/1, (fraction)25/1, (fraction)30000/1001, (fraction)30/1, (fraction)50/1, (fraction)60000/1001 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/mpeg:\n   systemstream: false\n    mpegversion: { (int)1, (int)2 }\n          width: [ 16, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: { (fraction)24000/1001, (fraction)24/1, (fraction)25/1, (fraction)30000/1001, (fraction)30/1, (fraction)50/1, (fraction)60000/1001 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "altscan-mpeg2": {
                        "blurb": "Alternate MPEG-2 block scanning. Disabling this might make buggy players play SVCD streams",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "aspect": {
                        "blurb": "Display aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encAspect",
                        "writable": true
                    },
                    "b-per-refframe": {
                        "blurb": "Number of B frames between each I/P frame",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "bitrate": {
                        "blurb": "Compressed video bitrate (kbps)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1125",
                        "max": "40000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "bufsize": {
                        "blurb": "Target decoders video buffer size (kB) (default depends on format)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "4000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "closed-gop": {
                        "blurb": "All Group-of-Pictures are closed (for multi-angle DVDs)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "constraints": {
                        "blurb": "Use strict video resolution and bitrate checks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "correct-svcd-hds": {
                        "blurb": "Force SVCD width to 480 instead of 540/720",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dualprime": {
                        "blurb": "Dual Prime Motion Estimation Mode for MPEG-2 I/P-frame only streams.  Quite some players do not support this.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "dummy-svcd-sof": {
                        "blurb": "Generate dummy SVCD scan-data (for vcdimager)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "force-b-b-p": {
                        "blurb": "Force two B frames between I/P frames when closing GOP boundaries",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "format": {
                        "blurb": "Encoding profile format",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encFormat",
                        "writable": true
                    },
                    "framerate": {
                        "blurb": "Output framerate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encFramerate",
                        "writable": true
                    },
                    "interlace-mode": {
                        "blurb": "MPEG-2 motion estimation and encoding modes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1 (-1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encInterlaceMode",
                        "writable": true
                    },
                    "intra-dc-prec": {
                        "blurb": "Number of bits precision for DC (base colour) in MPEG-2 blocks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9",
                        "max": "11",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "keep-hf": {
                        "blurb": "Maximize high-frequency resolution (for high-quality sources)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-gop-size": {
                        "blurb": "Maximal size per Group-of-Pictures (-1=default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "250",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-gop-size": {
                        "blurb": "Minimal size per Group-of-Pictures (-1=default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "250",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "motion-search-radius": {
                        "blurb": "Motion compensation search radius",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "32",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "non-video-bitrate": {
                        "blurb": "Assumed bitrate of non-video for sequence splitting (kbps)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "norm": {
                        "blurb": "Tag output for specific video norm",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encVideoNorm",
                        "writable": true
                    },
                    "playback-field-order": {
                        "blurb": "Force specific playback field order",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0 (-1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encPlaybackFieldOrders",
                        "writable": true
                    },
                    "pulldown-3-2": {
                        "blurb": "Generate header flags for 3-2 pull down 24fps movies",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "quant-matrix": {
                        "blurb": "Quantisation matrix to use for encoding",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMpeg2encQuantisationMatrix",
                        "writable": true
                    },
                    "quant-reduction-max-var": {
                        "blurb": "Maximal luma variance below which quantisation boost is used",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "2500",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "quantisation": {
                        "blurb": "Quantisation factor (-1=cbr, 0=default, 1=best, 31=worst)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "31",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "quantisation-reduction": {
                        "blurb": "Max. quantisation reduction for highly active blocks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "10",
                        "min": "-4",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "reduce-hf": {
                        "blurb": "How much to reduce high-frequency resolution (by increasing quantisation)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "reduction-2x2": {
                        "blurb": "Reduction factor for 2x2 subsampled candidate motion estimates (1=max. quality, 4=max. speed)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "4",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "reduction-4x4": {
                        "blurb": "Reduction factor for 4x4 subsampled candidate motion estimates (1=max. quality, 4=max. speed)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2",
                        "max": "4",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "sequence-header-every-gop": {
                        "blurb": "Include a sequence header in every GOP",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sequence-length": {
                        "blurb": "Place a sequence boundary after each <num> MB (0=disable)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "10240",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "unit-coeff-elim": {
                        "blurb": "How aggressively small-unit picture blocks should be skipped",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "40",
                        "min": "-40",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "vcd-still-size": {
                        "blurb": "Size of VCD stills (in KB)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "512",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstmpeg2enc",
        "license": "GPL",
        "other-types": {
            "GstMpeg2encAspect": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Deduce from input",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "1:1",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "4:3",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "16:9",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "2.21:1",
                        "name": "4",
                        "value": "4"
                    }
                ]
            },
            "GstMpeg2encFormat": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Generic MPEG-1",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "Standard VCD",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "User VCD",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "Generic MPEG-2",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "Standard SVCD",
                        "name": "4",
                        "value": "4"
                    },
                    {
                        "desc": "User SVCD",
                        "name": "5",
                        "value": "5"
                    },
                    {
                        "desc": "VCD Stills sequences",
                        "name": "6",
                        "value": "6"
                    },
                    {
                        "desc": "SVCD Stills sequences",
                        "name": "7",
                        "value": "7"
                    },
                    {
                        "desc": "DVD MPEG-2 for dvdauthor",
                        "name": "8",
                        "value": "8"
                    },
                    {
                        "desc": "DVD MPEG-2",
                        "name": "9",
                        "value": "9"
                    },
                    {
                        "desc": "ATSC 480i",
                        "name": "10",
                        "value": "10"
                    },
                    {
                        "desc": "ATSC 480p",
                        "name": "11",
                        "value": "11"
                    },
                    {
                        "desc": "ATSC 720p",
                        "name": "12",
                        "value": "12"
                    },
                    {
                        "desc": "ATSC 1080i",
                        "name": "13",
                        "value": "13"
                    }
                ]
            },
            "GstMpeg2encFramerate": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Same as input",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "24/1.001 (NTSC 3:2 pulldown converted film)",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "24 (native film)",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "25 (PAL/SECAM video)",
                        "name": "3",
                        "value": "3"
                    },
                    {
                        "desc": "30/1.001 (NTSC video)",
                        "name": "4",
                        "value": "4"
                    },
                    {
                        "desc": "30",
                        "name": "5",
                        "value": "5"
                    },
                    {
                        "desc": "50 (PAL/SECAM fields)",
                        "name": "6",
                        "value": "6"
                    },
                    {
                        "desc": "60/1.001 (NTSC fields)",
                        "name": "7",
                        "value": "7"
                    },
                    {
                        "desc": "60",
                        "name": "8",
                        "value": "8"
                    }
                ]
            },
            "GstMpeg2encInterlaceMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Format default mode",
                        "name": "-1",
                        "value": "-1"
                    },
                    {
                        "desc": "Progressive",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "Interlaced, per-frame encoding",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "Interlaced, per-field-encoding",
                        "name": "2",
                        "value": "2"
                    }
                ]
            },
            "GstMpeg2encPlaybackFieldOrders": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Unspecified",
                        "name": "0",
                        "value": "-1"
                    },
                    {
                        "desc": "Top-field first",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "Bottom-field first",
                        "name": "2",
                        "value": "2"
                    }
                ]
            },
            "GstMpeg2encQuantisationMatrix": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Default",
                        "name": "9",
                        "value": "0"
                    },
                    {
                        "desc": "High resolution",
                        "name": "1",
                        "value": "1"
                    },
                    {
                        "desc": "KVCD",
                        "name": "2",
                        "value": "2"
                    },
                    {
                        "desc": "TMPGEnc",
                        "name": "3",
                        "value": "3"
                    }
                ]
            },
            "GstMpeg2encVideoNorm": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Unspecified",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "PAL",
                        "name": "p",
                        "value": "112"
                    },
                    {
                        "desc": "NTSC",
                        "name": "n",
                        "value": "110"
                    },
                    {
                        "desc": "SECAM",
                        "name": "s",
                        "value": "115"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mpegpsdemux": {
        "description": "MPEG-PS demuxer",
        "elements": {
            "mpegpsdemux": {
                "author": "Wim Taymans <wim@fluendo.com>",
                "description": "Demultiplexes MPEG Program Streams",
                "hierarchy": [
                    "GstMpegPSDemux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer",
                "long-name": "MPEG Program Stream Demuxer",
                "pad-templates": {
                    "audio_%%02x": {
                        "caps": "audio/mpeg:\n    mpegversion: 1\naudio/mpeg:\n    mpegversion: 4\n  stream-format: { (string)adts, (string)loas }\naudio/x-private1-lpcm:\naudio/x-private1-ac3:\naudio/x-private1-dts:\naudio/ac3:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "private_%%d": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "sink": {
                        "caps": "video/mpeg:\n    mpegversion: { (int)1, (int)2 }\n   systemstream: true\nvideo/x-cdxa:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "subpicture_%%02x": {
                        "caps": "subpicture/x-dvd:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "video_%%02x": {
                        "caps": "video/mpeg:\n    mpegversion: { (int)1, (int)2, (int)4 }\n   systemstream: false\n         parsed: false\nvideo/x-h264:\n  stream-format: byte-stream\nvideo/x-h265:\n  stream-format: byte-stream\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "ignore-scr": {
                        "blurb": "Ignore SCR data for timing",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {}
            }
        },
        "filename": "gstmpegpsdemux",
        "license": "unknown",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mpegpsmux": {
        "description": "MPEG-PS muxer",
        "elements": {
            "mpegpsmux": {
                "author": "Lin YANG <oxcsnicho@gmail.com>",
                "description": "Multiplexes media streams into an MPEG Program Stream",
                "hierarchy": [
                    "MpegPsMux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Muxer",
                "long-name": "MPEG Program Stream Muxer",
                "pad-templates": {
                    "sink_%%u": {
                        "caps": "video/mpeg:\n    mpegversion: { (int)1, (int)2, (int)4 }\n   systemstream: false\nvideo/x-dirac:\nvideo/x-h264:\n  stream-format: byte-stream\n      alignment: { (string)au, (string)nal }\naudio/mpeg:\n    mpegversion: { (int)1, (int)2 }\naudio/mpeg:\n    mpegversion: 4\n  stream-format: { (string)raw, (string)adts }\naudio/x-lpcm:\n          width: { (int)16, (int)20, (int)24 }\n           rate: { (int)48000, (int)96000 }\n       channels: [ 1, 8 ]\n  dynamic_range: [ 0, 255 ]\n       emphasis: { (boolean)false, (boolean)true }\n           mute: { (boolean)false, (boolean)true }\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "video/mpeg:\n    mpegversion: 2\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aggregate-gops": {
                        "blurb": "Whether to aggregate GOPs and push them out as buffer lists",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstmpegpsmux",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mpegtsdemux": {
        "description": "MPEG TS demuxer",
        "elements": {
            "tsdemux": {
                "author": "Zaheer Abbas Merali <zaheerabbas at merali dot org>\nEdward Hervey <edward.hervey@collabora.co.uk>",
                "description": "Demuxes MPEG2 transport streams",
                "hierarchy": [
                    "GstTSDemux",
                    "MpegTSBase",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer",
                "long-name": "MPEG transport stream demuxer",
                "pad-templates": {
                    "audio_%%01x_%%05x": {
                        "caps": "audio/mpeg:\n    mpegversion: 1\naudio/mpeg:\n    mpegversion: { (int)2, (int)4 }\n  stream-format: adts\naudio/mpeg:\n    mpegversion: 4\n  stream-format: loas\naudio/x-lpcm:\n          width: { (int)16, (int)20, (int)24 }\n           rate: { (int)48000, (int)96000 }\n       channels: [ 1, 8 ]\n  dynamic_range: [ 0, 255 ]\n       emphasis: { (boolean)false, (boolean)true }\n           mute: { (boolean)false, (boolean)true }\naudio/x-ac3:\naudio/x-eac3:\naudio/x-ac4:\naudio/x-dts:\naudio/x-opus:\naudio/x-private-ts-lpcm:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "private_%%01x_%%05x": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "sink": {
                        "caps": "video/mpegts:\n   systemstream: true\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "subpicture_%%01x_%%05x": {
                        "caps": "subpicture/x-pgs:\nsubpicture/x-dvd:\nsubpicture/x-dvb:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "video_%%01x_%%05x": {
                        "caps": "video/mpeg:\n    mpegversion: { (int)1, (int)2, (int)4 }\n   systemstream: false\nvideo/x-h264:\n  stream-format: byte-stream\nvideo/x-h265:\n  stream-format: byte-stream\nvideo/x-dirac:\nvideo/x-cavs:\nvideo/x-wmv:\n     wmvversion: 3\n         format: WVC1\nimage/x-jpc:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "emit-stats": {
                        "blurb": "Emit messages for every pcr/opcr/pts/dts",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "latency": {
                        "blurb": "Latency to add for smooth demuxing (in ms)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "700",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "program-number": {
                        "blurb": "Program Number to demux for (-1 to ignore)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {}
            },
            "tsparse": {
                "author": "Alessandro Decina <alessandro@nnva.org>, Zaheer Abbas Merali <zaheerabbas at merali dot org>",
                "description": "Parses MPEG2 transport streams",
                "hierarchy": [
                    "MpegTSParse2",
                    "MpegTSBase",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser",
                "long-name": "MPEG transport stream parser",
                "pad-templates": {
                    "program_%%u": {
                        "caps": "video/mpegts:\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "request"
                    },
                    "sink": {
                        "caps": "video/mpegts:\n   systemstream: true\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/mpegts:\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alignment": {
                        "blurb": "Number of packets per buffer (padded with dummy packets on EOS) (0 = auto)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "pcr-pid": {
                        "blurb": "Set the PID to use for PCR values (-1 for auto)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "set-timestamps": {
                        "blurb": "If set, timestamps will be set on the output buffers using PCRs and smoothed over the smoothing-latency period",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "smoothing-latency": {
                        "blurb": "Additional latency in microseconds for smoothing jitter in input timestamps on live capture",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "split-on-rai": {
                        "blurb": "If set, buffers sized smaller than the alignment will be sent so that RAI packets are at the start of a new buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstmpegtsdemux",
        "license": "LGPL",
        "other-types": {
            "MpegTSBase": {
                "hierarchy": [
                    "MpegTSBase",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "ignore-pcr": {
                        "blurb": "Ignore PCR stream for timing",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "parse-private-sections": {
                        "blurb": "Parse private sections",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                }
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mpegtsmux": {
        "description": "MPEG-TS muxer",
        "elements": {
            "atscmux": {
                "author": "Mathieu Duponchelle <mathieu@centricular.com>",
                "description": "Multiplexes media streams into an ATSC-compliant Transport Stream",
                "hierarchy": [
                    "GstATSCMux",
                    "GstBaseTsMux",
                    "GstAggregator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Muxer",
                "long-name": "ATSC Transport Stream Muxer",
                "pad-templates": {
                    "sink_%%d": {
                        "caps": "video/mpeg:\n         parsed: true\n    mpegversion: 2\n   systemstream: false\nvideo/x-h264:\n  stream-format: byte-stream\n      alignment: { (string)au, (string)nal }\naudio/x-ac3:\n         framed: true\naudio/x-eac3:\n         framed: true\n",
                        "direction": "sink",
                        "presence": "request",
                        "type": "GstBaseTsMuxPad"
                    },
                    "src": {
                        "caps": "video/mpegts:\n   systemstream: true\n     packetsize: 188\n",
                        "direction": "src",
                        "presence": "always",
                        "type": "GstAggregatorPad"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "mpegtsmux": {
                "author": "Fluendo <contact@fluendo.com>",
                "description": "Multiplexes media streams into an MPEG Transport Stream",
                "hierarchy": [
                    "GstMpegTsMux",
                    "GstBaseTsMux",
                    "GstAggregator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Muxer",
                "long-name": "MPEG Transport Stream Muxer",
                "pad-templates": {
                    "sink_%%d": {
                        "caps": "video/mpeg:\n         parsed: true\n    mpegversion: { (int)1, (int)2, (int)4 }\n   systemstream: false\nvideo/x-dirac:\nimage/x-jpc:\nvideo/x-h264:\n  stream-format: byte-stream\n      alignment: { (string)au, (string)nal }\nvideo/x-h265:\n  stream-format: byte-stream\n      alignment: { (string)au, (string)nal }\naudio/mpeg:\n         parsed: true\n    mpegversion: 1\naudio/mpeg:\n         framed: true\n    mpegversion: { (int)2, (int)4 }\n  stream-format: { (string)adts, (string)raw }\naudio/x-lpcm:\n          width: { (int)16, (int)20, (int)24 }\n           rate: { (int)48000, (int)96000 }\n       channels: [ 1, 8 ]\n  dynamic_range: [ 0, 255 ]\n       emphasis: { (boolean)false, (boolean)true }\n           mute: { (boolean)false, (boolean)true }\naudio/x-ac3:\n         framed: true\naudio/x-dts:\n         framed: true\naudio/x-opus:\n       channels: [ 1, 8 ]\nchannel-mapping-family: { (int)0, (int)1 }\nsubpicture/x-dvb:\napplication/x-teletext:\nmeta/x-klv:\n         parsed: true\nimage/x-jpc:\n        profile: [ 0, 49151 ]\n",
                        "direction": "sink",
                        "presence": "request",
                        "type": "GstBaseTsMuxPad"
                    },
                    "src": {
                        "caps": "video/mpegts:\n   systemstream: true\n     packetsize: { (int)188, (int)192 }\n",
                        "direction": "src",
                        "presence": "always",
                        "type": "GstAggregatorPad"
                    }
                },
                "properties": {
                    "m2ts-mode": {
                        "blurb": "Set to TRUE to output Blu-Ray disc format with 192 byte packets. FALSE for standard TS format with 188 byte packets.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstmpegtsmux",
        "license": "LGPL",
        "other-types": {
            "GstBaseTsMux": {
                "hierarchy": [
                    "GstBaseTsMux",
                    "GstAggregator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "alignment": {
                        "blurb": "Number of packets per buffer (padded with dummy packets on EOS) (-1 = auto, 0 = all available packets, 7 for UDP streaming)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "bitrate": {
                        "blurb": "Set the target bitrate, will insert null packets as padding  to achieve multiplex-wide constant bitrate (0 means no padding)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "pat-interval": {
                        "blurb": "Set the interval (in ticks of the 90kHz clock) for writing out the PAT table",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9000",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "pcr-interval": {
                        "blurb": "Set the interval (in ticks of the 90kHz clock) for writing PCR",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3600",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "pmt-interval": {
                        "blurb": "Set the interval (in ticks of the 90kHz clock) for writing out the PMT table",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9000",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "prog-map": {
                        "blurb": "A GstStructure specifies the mapping from elementary streams to programs",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": true
                    },
                    "scte-35-null-interval": {
                        "blurb": "Set the interval (in ticks of the 90kHz clock) for writing SCTE-35 NULL (heartbeat) packets. (only valid if scte-35-pid is different from 0)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "27000000",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "scte-35-pid": {
                        "blurb": "PID to use for inserting SCTE-35 packets (0: unused)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "si-interval": {
                        "blurb": "Set the interval (in ticks of the 90kHz clock) for writing out the ServiceInformation tables",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9000",
                        "max": "-1",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                }
            },
            "GstBaseTsMuxPad": {
                "hierarchy": [
                    "GstBaseTsMuxPad",
                    "GstAggregatorPad",
                    "GstPad",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {},
                "signals": {}
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mplex": {
        "description": "High-quality MPEG/DVD/SVCD/VCD video/audio multiplexer",
        "elements": {
            "mplex": {
                "author": "Andrew Stevens <andrew.stevens@nexgo.de>\nRonald Bultje <rbultje@ronald.bitfreak.net>\nMark Nauwelaerts <mnauw@users.sourceforge.net>",
                "description": "High-quality MPEG/DVD/SVCD/VCD video/audio multiplexer",
                "hierarchy": [
                    "GstMplex",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Muxer",
                "long-name": "mplex video multiplexer",
                "pad-templates": {
                    "audio_%%u": {
                        "caps": "audio/mpeg:\n    mpegversion: 1\n          layer: [ 1, 3 ]\n       channels: [ 1, 8 ]\n           rate: [ 8000, 96000 ]\naudio/x-ac3:\n       channels: [ 1, 8 ]\n           rate: [ 8000, 96000 ]\naudio/x-dts:\naudio/x-raw:\n         format: { S16BE, S20BE, S24BE }\n           rate: { (int)48000, (int)96000 }\n       channels: [ 1, 6 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "video/mpeg:\n   systemstream: true\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "video_%%u": {
                        "caps": "video/mpeg:\n    mpegversion: { (int)1, (int)2 }\n   systemstream: false\n          width: [ 16, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    }
                },
                "properties": {
                    "bufsize": {
                        "blurb": "Target decoders video buffer size (kB) [default determined by format if not explicitly set]",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "4000",
                        "min": "20",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "format": {
                        "blurb": "Encoding profile format",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "mpeg-1 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstMplexFormat",
                        "writable": true
                    },
                    "mux-bitrate": {
                        "blurb": "Bitrate of output stream in kbps (0 = autodetect)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "15360",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "packets-per-pack": {
                        "blurb": "Number of packets per pack for generic formats",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "100",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "sector-size": {
                        "blurb": "Specify sector size in bytes for generic formats",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2048",
                        "max": "16384",
                        "min": "256",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "system-headers": {
                        "blurb": "Create system header in every pack for generic formats",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "vbr": {
                        "blurb": "Whether the input video stream is variable bitrate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstmplex",
        "license": "GPL",
        "other-types": {
            "GstMplexFormat": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Generic MPEG-1",
                        "name": "mpeg-1",
                        "value": "0"
                    },
                    {
                        "desc": "Standard VCD",
                        "name": "vcd",
                        "value": "1"
                    },
                    {
                        "desc": "User VCD",
                        "name": "vcd-nsr",
                        "value": "2"
                    },
                    {
                        "desc": "Generic MPEG-2",
                        "name": "mpeg-2",
                        "value": "3"
                    },
                    {
                        "desc": "Standard SVCD",
                        "name": "svcd",
                        "value": "4"
                    },
                    {
                        "desc": "User SVCD",
                        "name": "svcd-nsr",
                        "value": "5"
                    },
                    {
                        "desc": "VCD Stills sequences",
                        "name": "vcd-still",
                        "value": "6"
                    },
                    {
                        "desc": "SVCD Stills sequences",
                        "name": "svcd-still",
                        "value": "7"
                    },
                    {
                        "desc": "DVD MPEG-2 for dvdauthor",
                        "name": "dvd-nav",
                        "value": "8"
                    },
                    {
                        "desc": "DVD MPEG-2",
                        "name": "dvd",
                        "value": "9"
                    },
                    {
                        "desc": "ATSC 480i",
                        "name": "atsc-480i",
                        "value": "10"
                    },
                    {
                        "desc": "ATSC 480p",
                        "name": "atsc-480p",
                        "value": "11"
                    },
                    {
                        "desc": "ATSC 720p",
                        "name": "atsc-720p",
                        "value": "12"
                    },
                    {
                        "desc": "ATSC 1080i",
                        "name": "atsc-1080i",
                        "value": "13"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "musepack": {
        "description": "Musepack decoder",
        "elements": {
            "musepackdec": {
                "author": "Ronald Bultje <rbultje@ronald.bitfreak.net>",
                "description": "Musepack decoder",
                "hierarchy": [
                    "GstMusepackDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "Musepack decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-musepack:\n  streamversion: { (int)7, (int)8 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n         layout: interleaved\n           rate: [ 8000, 96000 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstmusepack",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "mxf": {
        "description": "MXF plugin library",
        "elements": {
            "mxfdemux": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Demux MXF files",
                "hierarchy": [
                    "GstMXFDemux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer",
                "long-name": "MXF Demuxer",
                "pad-templates": {
                    "sink": {
                        "caps": "application/mxf:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "track_%%u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "max-drift": {
                        "blurb": "Maximum number of nanoseconds by which tracks can differ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "500000000",
                        "max": "18446744073709551615",
                        "min": "100000000",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "package": {
                        "blurb": "Material or Source package to use for playback",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "structure": {
                        "blurb": "Structural metadata of the MXF file",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    }
                },
                "rank": "primary",
                "signals": {}
            },
            "mxfmux": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Muxes video/audio streams into a MXF stream",
                "hierarchy": [
                    "GstMXFMux",
                    "GstAggregator",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Muxer",
                "long-name": "MXF muxer",
                "pad-templates": {
                    "alaw_audio_sink_%%u": {
                        "caps": "audio/x-alaw:\n           rate: [ 8000, 192000 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "bwf_audio_sink_%%u": {
                        "caps": "audio/x-raw:\n         format: S32LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: S32BE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: S24LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: S24BE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: S16BE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: U8\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "dv_dif_video_sink_%%u": {
                        "caps": "video/x-dv:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n   systemstream: true\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "jpeg2000_video_sink_%%u": {
                        "caps": "image/x-jpc:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n     colorspace: { (string)sRGB, (string)sYUV }\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "mpeg_audio_sink_%%u": {
                        "caps": "audio/mpeg:\n    mpegversion: 1\n          layer: [ 1, 3 ]\n           rate: [ 8000, 48000 ]\n       channels: [ 1, 2 ]\n         parsed: true\naudio/x-ac3:\n           rate: [ 4000, 96000 ]\n       channels: [ 1, 6 ]\naudio/mpeg:\n    mpegversion: 2\n           rate: [ 8000, 96000 ]\n       channels: [ 1, 8 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "mpeg_video_sink_%%u": {
                        "caps": "video/mpeg:\n    mpegversion: { (int)1, (int)2, (int)4 }\n   systemstream: false\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-h264:\n  stream-format: byte-stream\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "application/mxf:\n",
                        "direction": "src",
                        "presence": "always",
                        "type": "GstMXFMuxPad"
                    },
                    "up_video_sink_%%u": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: AYUV\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: v308\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: UYVY\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: YUY2\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "vanc_sink_%%u": {
                        "caps": "closedcaption/x-cea-708:\n         format: cdp\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "vc3_video_sink_%%u": {
                        "caps": "video/x-dnxhd:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "request"
                    }
                },
                "properties": {},
                "rank": "primary"
            }
        },
        "filename": "gstmxf",
        "license": "LGPL",
        "other-types": {
            "GstMXFMuxPad": {
                "hierarchy": [
                    "GstMXFMuxPad",
                    "GstAggregatorPad",
                    "GstPad",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {},
                "signals": {}
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "neonhttpsrc": {
        "description": "lib neon http client src",
        "elements": {
            "neonhttpsrc": {
                "author": "Edgard Lima <edgard.lima@gmail.com>, Rosfran Borges <rosfran.borges@indt.org.br>, Andre Moreira Magalhaes <andre.magalhaes@indt.org.br>",
                "description": "Receive data as a client over the network via HTTP using NEON",
                "hierarchy": [
                    "GstNeonhttpSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "HTTP client source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "accept-self-signed": {
                        "blurb": "Accept self-signed SSL/TLS certificates",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "automatic-redirect": {
                        "blurb": "Automatically follow HTTP redirects (HTTP Status Code 3xx)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "connect-timeout": {
                        "blurb": "Value in seconds to timeout a blocking connection (0 = default).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3600",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "cookies": {
                        "blurb": "HTTP request cookies",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GStrv",
                        "writable": true
                    },
                    "iradio-mode": {
                        "blurb": "Enable internet radio mode (ask server to send shoutcast/icecast metadata interleaved with the actual stream data)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "location": {
                        "blurb": "Location to read from",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "http://localhost/",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "neon-http-debug": {
                        "blurb": "Enable Neon HTTP debug messages",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "proxy": {
                        "blurb": "Proxy server to use, in the form HOSTNAME:PORT. Defaults to the http_proxy environment variable",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "read-timeout": {
                        "blurb": "Value in seconds to timeout a blocking read (0 = default).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3600",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "user-agent": {
                        "blurb": "Value of the User-Agent HTTP request header field",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "GStreamer neonhttpsrc",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstneonhttpsrc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "netsim": {
        "description": "Network Simulator",
        "elements": {
            "netsim": {
                "author": "Philippe Kalaf <philippe.kalaf@collabora.co.uk>, Havard Graff <havard@pexip.com>",
                "description": "An element that simulates network jitter, packet loss and packet duplication",
                "hierarchy": [
                    "GstNetSim",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network",
                "long-name": "Network Simulator",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "allow-reordering": {
                        "blurb": "When delaying packets, are they allowed to be reordered or not",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "delay-distribution": {
                        "blurb": "Distribution for the amount of delay",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "uniform (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstNetSimDistribution",
                        "writable": true
                    },
                    "delay-probability": {
                        "blurb": "The Probability a buffer is delayed",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "drop-packets": {
                        "blurb": "Drop the next n packets",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "drop-probability": {
                        "blurb": "The Probability a buffer is dropped",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "duplicate-probability": {
                        "blurb": "The Probability a buffer is duplicated",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "max-bucket-size": {
                        "blurb": "The size of the token bucket, related to burstiness resilience (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "max-delay": {
                        "blurb": "The maximum delay (inclusive) in ms to apply to buffers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "400",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "max-kbps": {
                        "blurb": "The maximum number of kilobits to let through per second (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-delay": {
                        "blurb": "The minimum delay in ms to apply to buffers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "200",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstnetsim",
        "license": "LGPL",
        "other-types": {
            "GstNetSimDistribution": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "uniform",
                        "name": "uniform",
                        "value": "0"
                    },
                    {
                        "desc": "normal",
                        "name": "normal",
                        "value": "1"
                    },
                    {
                        "desc": "gamma",
                        "name": "gamma",
                        "value": "2"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "nvcodec": {
        "description": "GStreamer NVCODEC plugin",
        "elements": {
            "nvh264dec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvh264dec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC h264 Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)constrained-baseline, (string)baseline, (string)main, (string)high }\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvh264enc": {
                "author": "Tim-Philipp Müller <tim@centricular.com>, Matthew Waters <matthew@centricular.com>, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "Encode H.264 video streams using NVIDIA's hardware-accelerated NVENC encoder API",
                "hierarchy": [
                    "GstNvH264Enc",
                    "GstNvDevice0H264Enc",
                    "GstNvBaseEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video/Hardware",
                "long-name": "NVENC H.264 Video Encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { NV12, YV12, I420, BGRA, RGBA, Y444, VUYA }\n          width: [ 145, 4096 ]\n         height: [ 49, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n interlace-mode: { (string)progressive }\n\nvideo/x-raw(memory:GLMemory):\n         format: { NV12, YV12, I420, BGRA, RGBA, Y444, VUYA }\n          width: [ 145, 4096 ]\n         height: [ 49, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n interlace-mode: { (string)progressive }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h264:\n          width: [ 145, 4096 ]\n         height: [ 49, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)main, (string)high, (string)high-4:4:4, (string)baseline }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aud": {
                        "blurb": "Use AU (Access Unit) delimiter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "b-adapt": {
                        "blurb": "Enable adaptive B-frame insert when lookahead is enabled",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bframes": {
                        "blurb": "Number of B-frames between I and P",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "4",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rc-lookahead": {
                        "blurb": "Number of frames for frame type lookahead",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "32",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "temporal-aq": {
                        "blurb": "Temporal Adaptive Quantization",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "vbv-buffer-size": {
                        "blurb": "VBV(HRD) Buffer Size in kbits (0 = NVENC default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "weighted-pred": {
                        "blurb": "Weighted Prediction",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary + 256"
            },
            "nvh264sldec": {
                "author": "Seungha Yang <seungha@centricular.com>",
                "description": "Nvidia H.264 video decoder",
                "hierarchy": [
                    "GstNvH264StatelessDec",
                    "GstNvH264Dec",
                    "GstH264Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC H.264 Stateless Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n  stream-format: { (string)avc, (string)avc3, (string)byte-stream }\n      alignment: au\n        profile: { (string)high, (string)main, (string)constrained-baseline, (string)baseline }\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "secondary"
            },
            "nvh265dec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvh265dec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC h265 Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h265:\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)main, (string)main-10, (string)main-12, (string)main-444, (string)main-444-10, (string)main-444-12 }\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE, P016_LE, Y444, Y444_16LE, Y444_16LE }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE, P016_LE, Y444, Y444_16LE, Y444_16LE }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvh265enc": {
                "author": "Tim-Philipp Müller <tim@centricular.com>, Matthew Waters <matthew@centricular.com>, Seungha Yang <pudding8757@gmail.com>",
                "description": "Encode HEVC video streams using NVIDIA's hardware-accelerated NVENC encoder API",
                "hierarchy": [
                    "GstNvH265Enc",
                    "GstNvDevice0H265Enc",
                    "GstNvBaseEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video/Hardware",
                "long-name": "NVENC HEVC Video Encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { NV12, P010_10LE, P016_LE, Y444, Y444_16LE, Y444_16LE }\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:GLMemory):\n         format: { NV12, P010_10LE, P016_LE, Y444, Y444_16LE, Y444_16LE }\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h265:\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)main, (string)main-10, (string)main-12, (string)main-444, (string)main-444-10, (string)main-444-12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aud": {
                        "blurb": "Use AU (Access Unit) delimiter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "b-adapt": {
                        "blurb": "Enable adaptive B-frame insert when lookahead is enabled",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bframes": {
                        "blurb": "Number of B-frames between I and P",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "5",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rc-lookahead": {
                        "blurb": "Number of frames for frame type lookahead",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "32",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "temporal-aq": {
                        "blurb": "Temporal Adaptive Quantization",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "vbv-buffer-size": {
                        "blurb": "VBV(HRD) Buffer Size in kbits (0 = NVENC default)",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "weighted-pred": {
                        "blurb": "Weighted Prediction",
                        "conditionally-available": true,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary + 256"
            },
            "nvh265sldec": {
                "author": "Seungha Yang <seungha@centricular.com>",
                "description": "Nvidia H.265 video decoder",
                "hierarchy": [
                    "GstNvH265StatelessDec",
                    "GstNvH265Dec",
                    "GstH265Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC H.265 Stateless Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h265:\n  stream-format: { (string)hev1, (string)hvc1, (string)byte-stream }\n      alignment: au\n        profile: { (string)main, (string)main-10, (string)main-12, (string)main-444, (string)main-444-10, (string)main-444-12 }\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE, P016_LE, Y444, Y444_16LE, Y444_16LE }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 144, 8192 ]\n         height: [ 144, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE, P016_LE, Y444, Y444_16LE, Y444_16LE }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "secondary"
            },
            "nvjpegdec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvjpegdec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC jpeg Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "image/jpeg:\n          width: [ 64, 32768 ]\n         height: [ 64, 16384 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 64, 32768 ]\n         height: [ 64, 16384 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 64, 32768 ]\n         height: [ 64, 16384 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvmpeg2videodec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvmpeg2videodec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC mpeg2video Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/mpeg:\n    mpegversion: 2\n   systemstream: false\n          width: [ 48, 4080 ]\n         height: [ 16, 4080 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 48, 4080 ]\n         height: [ 16, 4080 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 48, 4080 ]\n         height: [ 16, 4080 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvmpeg4videodec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvmpeg4videodec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC mpeg4video Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/mpeg:\n    mpegversion: 4\n   systemstream: false\n          width: [ 48, 2032 ]\n         height: [ 16, 2032 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 48, 2032 ]\n         height: [ 16, 2032 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 48, 2032 ]\n         height: [ 16, 2032 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvmpegvideodec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvmpegvideodec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC mpegvideo Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/mpeg:\n    mpegversion: 1\n   systemstream: false\n          width: [ 48, 4080 ]\n         height: [ 16, 4080 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 48, 4080 ]\n         height: [ 16, 4080 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 48, 4080 ]\n         height: [ 16, 4080 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvvp8dec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvvp8dec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC vp8 Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-vp8:\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 48, 4096 ]\n         height: [ 16, 4096 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            },
            "nvvp9dec": {
                "author": "Ericsson AB, http://www.ericsson.com, Seungha Yang <seungha.yang@navercorp.com>",
                "description": "NVDEC video decoder",
                "hierarchy": [
                    "nvvp9dec",
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "NVDEC vp9 Video Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-vp9:\n          width: [ 128, 8192 ]\n         height: [ 128, 8192 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n          width: [ 128, 8192 ]\n         height: [ 128, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE, P016_LE }\n\nvideo/x-raw(memory:GLMemory):\n          width: [ 128, 8192 ]\n         height: [ 128, 8192 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         format: { NV12, P010_10LE, P016_LE }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstnvcodec",
        "license": "LGPL",
        "other-types": {
            "GstNvBaseEnc": {
                "hierarchy": [
                    "GstNvBaseEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "kind": "object",
                "properties": {
                    "aq-strength": {
                        "blurb": "Adaptive Quantization Strength when spatial-aq is enabled from 1 (low) to 15 (aggressive), (0 = autoselect)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "15",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "bitrate": {
                        "blurb": "Bitrate in kbit/sec (0 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2048000",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "const-quality": {
                        "blurb": "Target Constant Quality level for VBR mode (0 = automatic)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "51",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "cuda-device-id": {
                        "blurb": "Get the GPU device to use for operations",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "gop-size": {
                        "blurb": "Number of frames between intra frames (-1 = infinite)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "75",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "i-adapt": {
                        "blurb": "Enable adaptive I-frame insert when lookahead is enabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "Maximum Bitrate in kbit/sec (ignored for CBR mode)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2048000",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "nonref-p": {
                        "blurb": "Automatic insertion of non-reference P-frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preset": {
                        "blurb": "Encoding Preset",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default (0)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstNvPreset",
                        "writable": true
                    },
                    "qp-const": {
                        "blurb": "Constant quantizer (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-const-b": {
                        "blurb": "Constant QP value for B frame, When >= 0, \"qp-const-i\" and \"qp-const-p\" should be also >= 0. Overwritten by \"qp-const\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-const-i": {
                        "blurb": "Constant QP value for I frame, When >= 0, \"qp-const-p\" and \"qp-const-b\" should be also >= 0. Overwritten by \"qp-const\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-const-p": {
                        "blurb": "Constant QP value for P frame, When >= 0, \"qp-const-i\" and \"qp-const-b\" should be also >= 0. Overwritten by \"qp-const\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-max": {
                        "blurb": "Maximum quantizer (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-max-b": {
                        "blurb": "Maximum QP value for B frame, When >= 0, \"qp-max-i\" and \"qp-max-p\" should be also >= 0. Overwritten by \"qp-max\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-max-i": {
                        "blurb": "Maximum QP value for I frame, When >= 0, \"qp-max-p\" and \"qp-max-b\" should be also >= 0. Overwritten by \"qp-max\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-max-p": {
                        "blurb": "Maximum QP value for P frame, When >= 0, \"qp-max-i\" and \"qp-max-b\" should be also >= 0. Overwritten by \"qp-max\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-min": {
                        "blurb": "Minimum quantizer (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-min-b": {
                        "blurb": "Minimum QP value for B frame, When >= 0, \"qp-min-i\" and \"qp-min-p\" should be also >= 0. Overwritten by \"qp-min\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-min-i": {
                        "blurb": "Minimum QP value for I frame, When >= 0, \"qp-min-p\" and \"qp-min-b\" should be also >= 0. Overwritten by \"qp-min\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "qp-min-p": {
                        "blurb": "Minimum QP value for P frame, When >= 0, \"qp-min-i\" and \"qp-min-b\" should be also >= 0. Overwritten by \"qp-min\" (-1 = from NVENC preset)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "rc-mode": {
                        "blurb": "Rate Control Mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default (0)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstNvRCMode",
                        "writable": true
                    },
                    "spatial-aq": {
                        "blurb": "Spatial Adaptive Quantization",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "strict-gop": {
                        "blurb": "Minimize GOP-to-GOP rate fluctuations",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zerolatency": {
                        "blurb": "Zero latency operation (no reordering delay)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                }
            },
            "GstNvDec": {
                "hierarchy": [
                    "GstNvDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            },
            "GstNvDevice0H264Enc": {
                "hierarchy": [
                    "GstNvDevice0H264Enc",
                    "GstNvBaseEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "kind": "object"
            },
            "GstNvDevice0H265Enc": {
                "hierarchy": [
                    "GstNvDevice0H265Enc",
                    "GstNvBaseEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "kind": "object"
            },
            "GstNvH264Dec": {
                "hierarchy": [
                    "GstNvH264Dec",
                    "GstH264Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            },
            "GstNvH265Dec": {
                "hierarchy": [
                    "GstNvH265Dec",
                    "GstH265Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            },
            "GstNvPreset": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Default",
                        "name": "default",
                        "value": "0"
                    },
                    {
                        "desc": "High Performance",
                        "name": "hp",
                        "value": "1"
                    },
                    {
                        "desc": "High Quality",
                        "name": "hq",
                        "value": "2"
                    },
                    {
                        "desc": "Low Latency",
                        "name": "low-latency",
                        "value": "3"
                    },
                    {
                        "desc": "Low Latency, High Quality",
                        "name": "low-latency-hq",
                        "value": "4"
                    },
                    {
                        "desc": "Low Latency, High Performance",
                        "name": "low-latency-hp",
                        "value": "5"
                    },
                    {
                        "desc": "Lossless",
                        "name": "lossless",
                        "value": "6"
                    },
                    {
                        "desc": "Lossless, High Performance",
                        "name": "lossless-hp",
                        "value": "7"
                    }
                ]
            },
            "GstNvRCMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Default",
                        "name": "default",
                        "value": "0"
                    },
                    {
                        "desc": "Constant Quantization",
                        "name": "constqp",
                        "value": "1"
                    },
                    {
                        "desc": "Constant Bit Rate",
                        "name": "cbr",
                        "value": "2"
                    },
                    {
                        "desc": "Variable Bit Rate",
                        "name": "vbr",
                        "value": "3"
                    },
                    {
                        "desc": "Variable Bit Rate (with minimum quantization parameter, DEPRECATED)",
                        "name": "vbr-minqp",
                        "value": "4"
                    },
                    {
                        "desc": "Low-Delay CBR, High Quality",
                        "name": "cbr-ld-hq",
                        "value": "5"
                    },
                    {
                        "desc": "CBR, High Quality (slower)",
                        "name": "cbr-hq",
                        "value": "6"
                    },
                    {
                        "desc": "VBR, High Quality (slower)",
                        "name": "vbr-hq",
                        "value": "7"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "ofa": {
        "description": "Calculate MusicIP fingerprint from audio files",
        "elements": {
            "ofa": {
                "author": "Milosz Derezynski <internalerror@gmail.com>, Eric Buehl <eric.buehl@gmail.com>",
                "description": "Find a music fingerprint using MusicIP's libofa",
                "hierarchy": [
                    "GstOFA",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "MusicIP Fingerprinting element",
                "long-name": "OFA",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { S16LE, S16BE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S16LE, S16BE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "fingerprint": {
                        "blurb": "Resulting fingerprint",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstofa",
        "license": "GPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "openal": {
        "description": "OpenAL plugin library",
        "elements": {
            "openalsink": {
                "author": "Juan Manuel Borges Caño <juanmabcmail@gmail.com>",
                "description": "Output audio through OpenAL",
                "hierarchy": [
                    "GstOpenALSink",
                    "GstAudioSink",
                    "GstAudioBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Audio",
                "long-name": "OpenAL Audio Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F64LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2 ]\naudio/x-raw:\n         format: F32LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: U8\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "Human-readable name of the device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "Human-readable name of the opened device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "user-context": {
                        "blurb": "User context",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "gpointer",
                        "writable": true
                    },
                    "user-device": {
                        "blurb": "User device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "gpointer",
                        "writable": true
                    },
                    "user-source": {
                        "blurb": "User source",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "openalsrc": {
                "author": "Juan Manuel Borges Caño <juanmabcmail@gmail.com>",
                "description": "Input audio through OpenAL",
                "hierarchy": [
                    "GstOpenalSrc",
                    "GstAudioSrc",
                    "GstAudioBaseSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio",
                "long-name": "OpenAL Audio Source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: 1\naudio/x-raw:\n         format: U8\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "User device, default device if NULL",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "Human-readable name of the device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstopenal",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "opencv": {
        "description": "GStreamer OpenCV Plugins",
        "elements": {
            "cameracalibrate": {
                "author": "Philippe Renon <philippe_renon@yahoo.fr>",
                "description": "Performs camera calibration",
                "hierarchy": [
                    "GstCameraCalibrate",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "cameracalibrate",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aspect-ratio": {
                        "blurb": "The aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "board-height": {
                        "blurb": "The board height in number of items",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "6",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "board-width": {
                        "blurb": "The board width in number of items",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "center-principal-point": {
                        "blurb": "Fix the principal point at the center",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "corner-sub-pixel": {
                        "blurb": "Improve corner detection accuracy for chessboard",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "delay": {
                        "blurb": "Sampling periodicity in ms",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "350",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "frame-count": {
                        "blurb": "The number of frames to use from the input for calibration",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "25",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern": {
                        "blurb": "One of the chessboard, circles, or asymmetric circle pattern",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "chessboard (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCameraCalibrationPattern",
                        "writable": true
                    },
                    "settings": {
                        "blurb": "Camera correction parameters (opaque string of serialized OpenCV objects)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "show-corners": {
                        "blurb": "Show corners",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "square-size": {
                        "blurb": "The size of a square in your defined unit (point, millimeter, etc.)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50",
                        "max": "3.40282e+38",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "use-fisheye": {
                        "blurb": "Use fisheye camera model for calibration",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "zero-tangent-distorsion": {
                        "blurb": "Assume zero tangential distortion",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "cameraundistort": {
                "author": "Philippe Renon <philippe_renon@yahoo.fr>",
                "description": "Performs camera undistort",
                "hierarchy": [
                    "GstCameraUndistort",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "cameraundistort",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: GRAY16_LE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: GRAY16_LE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alpha": {
                        "blurb": "Show all pixels (1), only valid ones (0) or something in between",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "settings": {
                        "blurb": "Camera correction parameters (opaque string of serialized OpenCV objects)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "undistort": {
                        "blurb": "Apply camera corrections",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "cvdilate": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies cvDilate OpenCV function to the image",
                "hierarchy": [
                    "GstCvDilate",
                    "GstCvDilateErode",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "cvdilate",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: GRAY16_LE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: GRAY16_LE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "cvequalizehist": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies cvEqualizeHist OpenCV function to the image",
                "hierarchy": [
                    "GstCvEqualizeHist",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "cvequalizehist",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "cverode": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies cvErode OpenCV function to the image",
                "hierarchy": [
                    "GstCvErode",
                    "GstCvDilateErode",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "cverode",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: GRAY16_LE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: GRAY16_LE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY16_BE\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ARGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: ABGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "cvlaplace": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies cvLaplace OpenCV function to the image",
                "hierarchy": [
                    "GstCvLaplace",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "cvlaplace",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aperture-size": {
                        "blurb": "Size of the extended Laplace Kernel (1, 3, 5 or 7)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "7",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mask": {
                        "blurb": "Sets whether the detected edges should be used as a mask on the original input or not",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "scale": {
                        "blurb": "Scale factor",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "shift": {
                        "blurb": "Value added to the scaled source array elements",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "cvsmooth": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies cvSmooth OpenCV function to the image",
                "hierarchy": [
                    "GstCvSmooth",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "cvsmooth",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: GRAY8\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "color": {
                        "blurb": "If type is gaussian, this means the standard deviation.If type is bilateral, this means the color-sigma. If zero, Default values are used.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Height of the area to blur (in pixels).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2147483647",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "kernel-height": {
                        "blurb": "The gaussian kernel height (must be positive and odd).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "kernel-width": {
                        "blurb": "The gaussian kernel width (must be positive and odd).If type is median, this means the aperture linear size.Check OpenCV docs: http://docs.opencv.org/2.4/modules/imgproc/doc/filtering.htm",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "position-x": {
                        "blurb": "Starting x position for blur (in pixels).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "position-y": {
                        "blurb": "Starting y position for blur (in pixels).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "spatial": {
                        "blurb": "Only used in bilateral type, means the spatial-sigma.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "1.79769e+308",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "type": {
                        "blurb": "Smooth Type",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "gaussian (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCvSmoothTypeType",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of the area to blur (in pixels).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2147483647",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "cvsobel": {
                "author": "Thiago Santos<thiago.sousa.santos@collabora.co.uk>",
                "description": "Applies cvSobel OpenCV function to the image",
                "hierarchy": [
                    "GstCvSobel",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Transform/Effect/Video",
                "long-name": "cvsobel",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aperture-size": {
                        "blurb": "Size of the extended Sobel Kernel (1, 3, 5 or 7)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "7",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mask": {
                        "blurb": "Sets whether the detected derivative edges should be used as a mask on the original input or not",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "x-order": {
                        "blurb": "Order of the derivative x",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "y-order": {
                        "blurb": "Order of the derivative y",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "dewarp": {
                "author": "Nicola Murino <nicola.murino@gmail.com>",
                "description": "Dewarp fisheye images",
                "hierarchy": [
                    "GstDewarp",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Dewarp fisheye images",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "display-mode": {
                        "blurb": "How to display the dewarped image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "single-panorama (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDewarpDisplayMode",
                        "writable": true
                    },
                    "inner-radius": {
                        "blurb": "Inner radius of the fisheye image donut. If outer radius <= inner radius the element will work in passthrough mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "interpolation-method": {
                        "blurb": "Interpolation method to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "bilinear (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDewarpInterpolationMode",
                        "writable": true
                    },
                    "outer-radius": {
                        "blurb": "Outer radius of the fisheye image donut. If outer radius <= inner radius the element will work in passthrough mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-center": {
                        "blurb": "X axis center of the fisheye image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "x-remap-correction": {
                        "blurb": "Correction factor for remapping on x axis. A correction is needed if the fisheye image is not inside a circle",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-center": {
                        "blurb": "Y axis center of the fisheye image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "y-remap-correction": {
                        "blurb": "Correction factor for remapping on y axis. A correction is needed if the fisheye image is not inside a circle",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "disparity": {
                "author": "Miguel Casas-Sanchez <miguelecasassanchez@gmail.com>",
                "description": "Calculates the stereo disparity map from two (sequences of) rectified and aligned stereo images",
                "hierarchy": [
                    "GstDisparity",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Stereo image disparity (depth) map calculation",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "method": {
                        "blurb": "Stereo matching method to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "sgbm (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstDisparityMethod",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "edgedetect": {
                "author": "Michael Sheldon <mike@mikeasoft.com>",
                "description": "Performs canny edge detection on videos and images.",
                "hierarchy": [
                    "GstEdgeDetect",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "edgedetect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "aperture": {
                        "blurb": "Aperture size for Sobel operator (Must be either 3, 5 or 7",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "7",
                        "min": "3",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mask": {
                        "blurb": "Sets whether the detected edges should be used as a mask on the original input or not",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "threshold1": {
                        "blurb": "Threshold value for canny edge detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "threshold2": {
                        "blurb": "Second threshold value for canny edge detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "150",
                        "max": "1000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "faceblur": {
                "author": "Michael Sheldon <mike@mikeasoft.com>,Robert Jobbagy <jobbagy.robert@gmail.com>",
                "description": "Blurs faces in images and videos",
                "hierarchy": [
                    "GstFaceBlur",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "faceblur",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "flags": {
                        "blurb": "Flags to cvHaarDetectObjects",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "do-canny-pruning",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpencvFaceBlurFlags",
                        "writable": true
                    },
                    "min-neighbors": {
                        "blurb": "Minimum number (minus 1) of neighbor rectangles that makes up an object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-size-height": {
                        "blurb": "Minimum window height size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-size-width": {
                        "blurb": "Minimum window width size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "profile": {
                        "blurb": "Location of Haar cascade file to use for face blurion",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/usr/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "scale-factor": {
                        "blurb": "Factor by which the windows is scaled after each scan",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1.25",
                        "max": "10",
                        "min": "1.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "facedetect": {
                "author": "Michael Sheldon <mike@mikeasoft.com>",
                "description": "Performs face detection on videos and images, providing detected positions via bus messages",
                "hierarchy": [
                    "GstFaceDetect",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "facedetect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "display": {
                        "blurb": "Sets whether the detected faces should be highlighted in the output",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "eyes-profile": {
                        "blurb": "Location of Haar cascade file to use for eye-pair detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/usr/share/OpenCV/haarcascades/haarcascade_mcs_eyepair_small.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "flags": {
                        "blurb": "Flags to cvHaarDetectObjects",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "do-canny-pruning",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpencvFaceDetectFlags",
                        "writable": true
                    },
                    "min-neighbors": {
                        "blurb": "Minimum number (minus 1) of neighbor rectangles that makes up an object",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-size-height": {
                        "blurb": "Minimum area height to be recognized as a face",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-size-width": {
                        "blurb": "Minimum area width to be recognized as a face",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "30",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-stddev": {
                        "blurb": "Minimum image average standard deviation: on images with standard deviation lesser than this value facedetection will not be performed. Setting this property help to save cpu and reduce false positives not performing face detection on images with little changes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "mouth-profile": {
                        "blurb": "Location of Haar cascade file to use for mouth detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/usr/share/OpenCV/haarcascades/haarcascade_mcs_mouth.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "nose-profile": {
                        "blurb": "Location of Haar cascade file to use for nose detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/usr/share/OpenCV/haarcascades/haarcascade_mcs_nose.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "profile": {
                        "blurb": "Location of Haar cascade file to use for face detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/usr/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "scale-factor": {
                        "blurb": "Factor by which the frame is scaled after each object scan",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1.25",
                        "max": "10",
                        "min": "1.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "updates": {
                        "blurb": "When send update bus messages, if at all",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "every_frame (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFaceDetectUpdates",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "grabcut": {
                "author": "Miguel Casas-Sanchez <miguelecasassanchez@gmail.com>",
                "description": "Runs Grabcut algorithm on input alpha. Values: BG=0, FG=1, PR_BG=2, PR_FGD=3; NOTE: larger values of alpha (notably 255) are interpreted as PR_FGD too. \nIN CASE OF no alpha mask input (all 0's or all 1's), the 'face' downstream event is used to create a bbox of PR_FG elements.\nIF nothing is present, then nothing is done.",
                "hierarchy": [
                    "GstGrabcut",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Grabcut-based image FG/BG segmentation",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "scale": {
                        "blurb": "Grow factor for the face bounding box, if present",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1.6",
                        "max": "4",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "test-mode": {
                        "blurb": "If true, the output RGB is overwritten with the segmented foreground. Alpha channel same as normal case ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "handdetect": {
                "author": "Andol Li <andol@andol.info>",
                "description": "Performs hand gesture detection on videos, providing detected hand positions via bus message and navigation event, and deals with hand gesture events",
                "hierarchy": [
                    "GstHanddetect",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstNavigation"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "handdetect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ROI-HEIGHT": {
                        "blurb": "HEIGHT of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ROI-WIDTH": {
                        "blurb": "WIDTH of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ROI-X": {
                        "blurb": "X of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ROI-Y": {
                        "blurb": "Y of left-top pointer in region of interest \nGestures in the defined region of interest will emit messages",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "display": {
                        "blurb": "Whether the detected hands are highlighted in output frame",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "profile-fist": {
                        "blurb": "Location of HAAR cascade file (fist gesture)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "@0@/fist.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "profile-palm": {
                        "blurb": "Location of HAAR cascade file (palm gesture)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "@0@/palm.xml",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "motioncells": {
                "author": "Robert Jobbagy <jobbagy dot robert at gmail dot com>, Nicola Murino <nicola dot murino at gmail.com>",
                "description": "Performs motion detection on videos and images, providing detected motion cells index via bus messages",
                "hierarchy": [
                    "GstMotioncells",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "motioncells",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "calculatemotion": {
                        "blurb": "Toggles motion calculation. If FALSE, this filter does nothing",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cellscolor": {
                        "blurb": "Color for motion cells in R,G,B format. Max per channel is 255",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "255,255,0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "datafile": {
                        "blurb": "Location of motioncells data file (empty string means no saving)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "datafileextension": {
                        "blurb": "Extension of datafile",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "vamc",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "display": {
                        "blurb": "Toggle display of motion cells on current frame",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gap": {
                        "blurb": "Interval in seconds after which motion is considered finished and a motion finished bus message is posted.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "60",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "gridx": {
                        "blurb": "Number of horizontal grid cells.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "32",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "gridy": {
                        "blurb": "Number of vertical grid cells.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "32",
                        "min": "8",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "minimummotionframes": {
                        "blurb": "Minimum number of motion frames triggering a motion event",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "60",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "motioncellsidx": {
                        "blurb": "Describe a cell with its line and column idx separated with \":\". Pass multiple cells as a comma-separated list",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "motioncellthickness": {
                        "blurb": "Motion Cell Border Thickness. Set to -1 to fill motion cell",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "5",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "motionmaskcellspos": {
                        "blurb": "Describe a cell with its line and column idx separated with \":\". Pass multiple cells as a comma-separated list",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "motionmaskcoords": {
                        "blurb": "Describe a region with its upper left and lower right x, y coordinates separated with \":\". Pass multiple regions as a comma-separated list",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "postallmotion": {
                        "blurb": "Post bus messages for every motion frame or just motion start and motion stop",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "postnomotion": {
                        "blurb": "If non 0, post a no_motion event on the bus if no motion is detected for the given number of seconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "180",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "sensitivity": {
                        "blurb": "Motion detection sensitivity.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "threshold": {
                        "blurb": "Threshold value for motion. Filter detects motion when at least this fraction of the cells have moved",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.01",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "usealpha": {
                        "blurb": "Toggle usage of alpha blending on frames with motion cells",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "opencvtextoverlay": {
                "author": "sreerenj<bsreerenj@gmail.com>",
                "description": "Write text on the top of video",
                "hierarchy": [
                    "GstOpencvTextOverlay",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "opencvtextoverlay",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "colorB": {
                        "blurb": "Sets the color -B",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "colorG": {
                        "blurb": "Sets the color -G",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "colorR": {
                        "blurb": "Sets the color -R",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Sets the height of fonts",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "5",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "text": {
                        "blurb": "Text to be display.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "Opencv Text Overlay",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "thickness": {
                        "blurb": "Sets the Thickness of Font",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Sets the width of fonts",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "5",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "xpos": {
                        "blurb": "Sets the Horizontal position",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ypos": {
                        "blurb": "Sets the Vertical position",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "50",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "retinex": {
                "author": "Miguel Casas-Sanchez <miguelecasassanchez@gmail.com>",
                "description": "Multiscale retinex for colour image enhancement",
                "hierarchy": [
                    "GstRetinex",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Retinex image colour enhancement",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "method": {
                        "blurb": "Retinex method to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "basic (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstRetinexMethod",
                        "writable": true
                    },
                    "scales": {
                        "blurb": "Amount of gaussian filters (scales) used in multiscale retinex",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "4",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "segmentation": {
                "author": "Miguel Casas-Sanchez <miguelecasassanchez@gmail.com>",
                "description": "Create a Foregound/Background mask applying a particular algorithm",
                "hierarchy": [
                    "GstSegmentation",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Foreground/background video sequence segmentation",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "learning-rate": {
                        "blurb": "Speed with which a motionless foreground pixel would become background (inverse of number of frames)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.01",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "method": {
                        "blurb": "Segmentation method to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "mog2 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSegmentationMethod",
                        "writable": true
                    },
                    "test-mode": {
                        "blurb": "If true, the output RGB is overwritten with the calculated foreground (white color)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "skindetect": {
                "author": "Miguel Casas-Sanchez <miguelecasassanchez@gmail.com>",
                "description": "Performs non-parametric skin detection on input",
                "hierarchy": [
                    "GstSkinDetect",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "skindetect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "method": {
                        "blurb": "Method to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "hsv (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSkindetectMethod",
                        "writable": true
                    },
                    "postprocess": {
                        "blurb": "Apply opening-closing to skin detection to extract large, significant blobs ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "templatematch": {
                "author": "Noam Lewis <jones.noamle@gmail.com>",
                "description": "Performs template matching on videos and images, providing detected positions via bus messages.",
                "hierarchy": [
                    "GstTemplateMatch",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "templatematch",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "display": {
                        "blurb": "Sets whether the detected template should be highlighted in the output",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "method": {
                        "blurb": "Specifies the way the template must be compared with image regions. 0=SQDIFF, 1=SQDIFF_NORMED, 2=CCOR, 3=CCOR_NORMED, 4=CCOEFF, 5=CCOEFF_NORMED.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "5",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "template": {
                        "blurb": "Filename of template image",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstopencv",
        "license": "LGPL",
        "other-types": {
            "GstCameraCalibrationPattern": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Chessboard",
                        "name": "chessboard",
                        "value": "0"
                    },
                    {
                        "desc": "Circle Grids",
                        "name": "circle_grids",
                        "value": "1"
                    },
                    {
                        "desc": "Asymmetric Circle Grids",
                        "name": "asymmetric_circle_grids",
                        "value": "2"
                    }
                ]
            },
            "GstCvDilateErode": {
                "hierarchy": [
                    "GstCvDilateErode",
                    "GstOpencvVideoFilter",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "iterations": {
                        "blurb": "Number of iterations to run the algorithm",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                }
            },
            "GstCvSmoothTypeType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "CV Blur",
                        "name": "blur",
                        "value": "1"
                    },
                    {
                        "desc": "CV Gaussian",
                        "name": "gaussian",
                        "value": "2"
                    },
                    {
                        "desc": "CV Median",
                        "name": "median",
                        "value": "3"
                    },
                    {
                        "desc": "CV Bilateral",
                        "name": "bilateral",
                        "value": "4"
                    }
                ]
            },
            "GstDewarpDisplayMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Single panorama image",
                        "name": "single-panorama",
                        "value": "0"
                    },
                    {
                        "desc": "Dewarped image is split in two images displayed one below the other",
                        "name": "double-panorama",
                        "value": "1"
                    },
                    {
                        "desc": "Dewarped image is split in four images dysplayed as a quad view",
                        "name": "quad-view",
                        "value": "2"
                    }
                ]
            },
            "GstDewarpInterpolationMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "A nearest-neighbor interpolation",
                        "name": "nearest",
                        "value": "0"
                    },
                    {
                        "desc": "A bilinear interpolation",
                        "name": "bilinear",
                        "value": "1"
                    },
                    {
                        "desc": "A bicubic interpolation over 4x4 pixel neighborhood",
                        "name": "bicubic",
                        "value": "2"
                    },
                    {
                        "desc": "A Lanczos interpolation over 8x8 pixel neighborhood",
                        "name": "Lanczos",
                        "value": "3"
                    }
                ]
            },
            "GstDisparityMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Global block matching algorithm",
                        "name": "sbm",
                        "value": "0"
                    },
                    {
                        "desc": "Semi-global block matching algorithm",
                        "name": "sgbm",
                        "value": "1"
                    }
                ]
            },
            "GstFaceDetectUpdates": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Send update messages on every frame",
                        "name": "every_frame",
                        "value": "0"
                    },
                    {
                        "desc": "Send messages when a new face is detected or one is not anymore detected",
                        "name": "on_change",
                        "value": "1"
                    },
                    {
                        "desc": "Send messages whenever a face is detected",
                        "name": "on_face",
                        "value": "2"
                    },
                    {
                        "desc": "Send no messages update",
                        "name": "none",
                        "value": "3"
                    }
                ]
            },
            "GstOpencvFaceBlurFlags": {
                "kind": "flags",
                "values": [
                    {
                        "desc": "Do Canny edge detection to discard some regions",
                        "name": "do-canny-pruning",
                        "value": "0x00000001"
                    }
                ]
            },
            "GstOpencvFaceDetectFlags": {
                "kind": "flags",
                "values": [
                    {
                        "desc": "Do Canny edge detection to discard some regions",
                        "name": "do-canny-pruning",
                        "value": "0x00000001"
                    }
                ]
            },
            "GstRetinexMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Basic retinex restoration",
                        "name": "basic",
                        "value": "0"
                    },
                    {
                        "desc": "Mutiscale retinex restoration",
                        "name": "multiscale",
                        "value": "1"
                    }
                ]
            },
            "GstSegmentationMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Codebook-based segmentation (Bradski2008)",
                        "name": "codebook",
                        "value": "0"
                    },
                    {
                        "desc": "Mixture-of-Gaussians segmentation (Bowden2001)",
                        "name": "mog",
                        "value": "1"
                    },
                    {
                        "desc": "Mixture-of-Gaussians segmentation (Zivkovic2004)",
                        "name": "mog2",
                        "value": "2"
                    }
                ]
            },
            "GstSkindetectMethod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Classic HSV thresholding",
                        "name": "hsv",
                        "value": "0"
                    },
                    {
                        "desc": "Normalised-RGB colorspace thresholding",
                        "name": "rgb",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "openexr": {
        "description": "OpenEXR image plugin",
        "elements": {
            "openexrdec": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Decode EXR streams",
                "hierarchy": [
                    "GstOpenEXRDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video",
                "long-name": "OpenEXR decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "image/x-exr:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: ARGB64\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            }
        },
        "filename": "gstopenexr",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "openh264": {
        "description": "OpenH264 encoder/decoder plugin",
        "elements": {
            "openh264dec": {
                "author": "Ericsson AB, http://www.ericsson.com",
                "description": "OpenH264 video decoder",
                "hierarchy": [
                    "GstOpenh264Dec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Decoder/Video",
                "long-name": "OpenH264 video decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)constrained-baseline, (string)baseline, (string)main, (string)high }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: I420\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "marginal"
            },
            "openh264enc": {
                "author": "Ericsson AB, http://www.ericsson.com",
                "description": "OpenH264 video encoder",
                "hierarchy": [
                    "GstOpenh264Enc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Encoder/Video",
                "long-name": "OpenH264 video encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: I420\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h264:\n  stream-format: byte-stream\n      alignment: au\n        profile: baseline\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "adaptive-quantization": {
                        "blurb": "Adaptive quantization",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "background-detection": {
                        "blurb": "Background detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "bitrate": {
                        "blurb": "Bitrate (in bits per second)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "128000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "complexity": {
                        "blurb": "Complexity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "medium (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpenh264encComplexity",
                        "writable": true
                    },
                    "deblocking": {
                        "blurb": "Deblocking mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "on (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpenh264encDeblockingModes",
                        "writable": true
                    },
                    "enable-denoise": {
                        "blurb": "Denoise control",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable-frame-skip": {
                        "blurb": "Skip frames to reach target bitrate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gop-size": {
                        "blurb": "Number of frames between intra frames",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "90",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "Maximum Bitrate (in bits per second)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-slice-size": {
                        "blurb": "The maximum size of one slice (in bytes).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1500000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "multi-thread": {
                        "blurb": "The number of threads.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "num-slices": {
                        "blurb": "The number of slices (needs slice-mode=n-slices)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-max": {
                        "blurb": "Maximum quantizer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "51",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "qp-min": {
                        "blurb": "Minimum quantizer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "51",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rate-control": {
                        "blurb": "Rate control mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "quality (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "RC_MODES",
                        "writable": true
                    },
                    "scene-change-detection": {
                        "blurb": "Scene change detection",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "slice-mode": {
                        "blurb": "Slice mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "n-slices (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpenh264EncSliceModes",
                        "writable": true
                    },
                    "usage-type": {
                        "blurb": "Type of video content",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "camera (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "EUsageType",
                        "writable": true
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstopenh264",
        "license": "BSD",
        "other-types": {
            "EUsageType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "video from camera",
                        "name": "camera",
                        "value": "0"
                    },
                    {
                        "desc": "screen content",
                        "name": "screen",
                        "value": "1"
                    }
                ]
            },
            "GstOpenh264EncSliceModes": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Fixed number of slices",
                        "name": "n-slices",
                        "value": "1"
                    },
                    {
                        "desc": "Number of slices equal to number of threads",
                        "name": "auto",
                        "value": "5"
                    }
                ]
            },
            "GstOpenh264encComplexity": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Low complexity / high speed encoding",
                        "name": "low",
                        "value": "0"
                    },
                    {
                        "desc": "Medium complexity / medium speed encoding",
                        "name": "medium",
                        "value": "1"
                    },
                    {
                        "desc": "High complexity / low speed encoding",
                        "name": "high",
                        "value": "2"
                    }
                ]
            },
            "GstOpenh264encDeblockingModes": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Deblocking on",
                        "name": "on",
                        "value": "0"
                    },
                    {
                        "desc": "Deblocking off",
                        "name": "off",
                        "value": "1"
                    },
                    {
                        "desc": "Deblocking on, except for slice boundaries",
                        "name": "not-slice-boundaries",
                        "value": "2"
                    }
                ]
            },
            "RC_MODES": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Quality mode",
                        "name": "quality",
                        "value": "0"
                    },
                    {
                        "desc": "Bitrate mode",
                        "name": "bitrate",
                        "value": "1"
                    },
                    {
                        "desc": "No bitrate control, just using buffer status",
                        "name": "buffer",
                        "value": "2"
                    },
                    {
                        "desc": "Rate control off mode",
                        "name": "off",
                        "value": "-1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "openjpeg": {
        "description": "OpenJPEG-based JPEG2000 image decoder/encoder",
        "elements": {
            "openjpegdec": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Decode JPEG2000 streams",
                "hierarchy": [
                    "GstOpenJPEGDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video",
                "long-name": "OpenJPEG JPEG2000 decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "image/x-j2c:\n       sampling: { (string)RGB, (string)BGR, (string)RGBA, (string)BGRA, (string)YCbCr-4:4:4, (string)YCbCr-4:2:2, (string)YCbCr-4:2:0, (string)YCbCr-4:1:1, (string)GRAYSCALE, (string)YCbCrA-4:4:4:4 }\nimage/x-jpc:\n       sampling: { (string)RGB, (string)BGR, (string)RGBA, (string)BGRA, (string)YCbCr-4:4:4, (string)YCbCr-4:2:2, (string)YCbCr-4:2:0, (string)YCbCr-4:1:1, (string)GRAYSCALE, (string)YCbCrA-4:4:4:4 }\nimage/jp2:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { ARGB64, ARGB, xRGB, AYUV64, Y444_10LE, I422_10LE, I420_10LE, AYUV, Y444, Y42B, I420, Y41B, YUV9, GRAY8, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-threads": {
                        "blurb": "Maximum number of worker threads to spawn. (0 = auto)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "openjpegenc": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Encode JPEG2000 streams",
                "hierarchy": [
                    "GstOpenJPEGEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video",
                "long-name": "OpenJPEG JPEG2000 encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { ARGB64, ARGB, xRGB, AYUV64, Y444_10LE, I422_10LE, I420_10LE, AYUV, Y444, Y42B, I420, Y41B, YUV9, GRAY8, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/x-j2c:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n num-components: [ 1, 4 ]\n    num-stripes: [ 1, 2147483647 ]\n       sampling: { (string)RGB, (string)BGR, (string)RGBA, (string)BGRA, (string)YCbCr-4:4:4, (string)YCbCr-4:2:2, (string)YCbCr-4:2:0, (string)YCbCr-4:1:1, (string)GRAYSCALE, (string)YCbCrA-4:4:4:4 }\n     colorspace: { (string)sRGB, (string)sYUV, (string)GRAY }\nimage/x-jpc:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n num-components: [ 1, 4 ]\n       sampling: { (string)RGB, (string)BGR, (string)RGBA, (string)BGRA, (string)YCbCr-4:4:4, (string)YCbCr-4:2:2, (string)YCbCr-4:2:0, (string)YCbCr-4:1:1, (string)GRAYSCALE, (string)YCbCrA-4:4:4:4 }\n     colorspace: { (string)sRGB, (string)sYUV, (string)GRAY }\nimage/jp2:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "num-layers": {
                        "blurb": "Number of layers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "10",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-resolutions": {
                        "blurb": "Number of resolutions",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "6",
                        "max": "10",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-stripes": {
                        "blurb": "Number of stripes for low latency encoding. (1 = low latency disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "progression-order": {
                        "blurb": "Progression order",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "lrcp (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpenJPEGEncProgressionOrder",
                        "writable": true
                    },
                    "tile-height": {
                        "blurb": "Tile Height",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "tile-offset-x": {
                        "blurb": "Tile Offset X",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "tile-offset-y": {
                        "blurb": "Tile Offset Y",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "tile-width": {
                        "blurb": "Tile Width",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstopenjpeg",
        "license": "LGPL",
        "other-types": {
            "GstOpenJPEGEncProgressionOrder": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "LRCP",
                        "name": "lrcp",
                        "value": "0"
                    },
                    {
                        "desc": "RLCP",
                        "name": "rlcp",
                        "value": "1"
                    },
                    {
                        "desc": "RPCL",
                        "name": "rpcl",
                        "value": "2"
                    },
                    {
                        "desc": "PCRL",
                        "name": "pcrl",
                        "value": "3"
                    },
                    {
                        "desc": "CPRL",
                        "name": "crpl",
                        "value": "4"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "openmpt": {
        "description": "OpenMPT module player",
        "elements": {
            "openmptdec": {
                "author": "Carlos Rafael Giani <dv@pseudoterminal.org>",
                "description": "Decoders module files (MOD/S3M/XM/IT/MTM/...) using OpenMPT",
                "hierarchy": [
                    "GstOpenMptDec",
                    "GstNonstreamAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "OpenMPT-based module music decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-mod:\n           type: { (string)669, (string)asylum-amf, (string)dsmi-amf, (string)extreme-ams, (string)velvet-ams, (string)dbm, (string)digi, (string)dmf, (string)dsm, (string)far, (string)gdm, (string)imf, (string)it, (string)j2b, (string)mdl, (string)med, (string)mod, (string)mt2, (string)mtm, (string)okt, (string)psm, (string)ptm, (string)s3m, (string)stm, (string)ult, (string)xm }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { S16LE, F32LE }\n         layout: interleaved\n           rate: [ 1, 192000 ]\n       channels: { (int)1, (int)2, (int)4 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "current-subsong": {
                        "blurb": "Subsong that is currently selected for playback",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "filter-length": {
                        "blurb": "Length of interpolation filter to use for the samples (0 = internal default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "8",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "master-gain": {
                        "blurb": "Gain to apply to the playback, in millibel",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483647",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-loops": {
                        "blurb": "Number of times a playback loop shall be executed (special values: 0 = no looping; -1 = infinite loop)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "output-buffer-size": {
                        "blurb": "Size of each output buffer, in samples (actual size can be smaller than this during flush or EOS)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "268435455",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "output-mode": {
                        "blurb": "Which mode playback shall use when a loop is encountered; looping = reset position to start of loop, steady = do not reset position",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "steady (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstNonstreamAudioOutputMode",
                        "writable": true
                    },
                    "stereo-separation": {
                        "blurb": "Degree of separation for stereo channels, in percent",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "400",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "subsong-mode": {
                        "blurb": "Mode which defines how to treat subsongs",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "default (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstNonstreamAudioSubsongMode",
                        "writable": true
                    },
                    "volume-ramping": {
                        "blurb": "Volume ramping strength; higher value -> slower ramping (-1 = internal default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "10",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary + 2"
            }
        },
        "filename": "gstopenmpt",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "openni2": {
        "description": "GStreamer Openni2 Plugins",
        "elements": {
            "openni2src": {
                "author": "Miguel Casas-Sanchez <miguelecasassanchez@gmail.com>",
                "description": "Extract readings from an OpenNI supported device (Kinect etc). ",
                "hierarchy": [
                    "GstOpenni2Src",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "Openni2 client source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { RGBA, RGB, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blocksize": {
                        "blurb": "Size in bytes to read per buffer (-1 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "do-timestamp": {
                        "blurb": "Apply current stream time to buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "location": {
                        "blurb": "Source uri, can be a file or a device.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "num-buffers": {
                        "blurb": "Number of buffers to output before sending EOS (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "sourcetype": {
                        "blurb": "Type of readings to get from the source",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "depth (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstOpenni2SrcSourcetype",
                        "writable": true
                    },
                    "typefind": {
                        "blurb": "Run typefind before negotiating (deprecated, non-functional)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstopenni2",
        "license": "LGPL",
        "other-types": {
            "GstOpenni2SrcSourcetype": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Get depth readings",
                        "name": "depth",
                        "value": "0"
                    },
                    {
                        "desc": "Get color readings",
                        "name": "color",
                        "value": "1"
                    },
                    {
                        "desc": "Get color and depth (as alpha) readings - EXPERIMENTAL",
                        "name": "both",
                        "value": "2"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "opusparse": {
        "description": "OPUS parse plugin",
        "elements": {
            "opusparse": {
                "author": "Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>",
                "description": "parses opus audio streams",
                "hierarchy": [
                    "GstOpusParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Audio",
                "long-name": "Opus audio parser",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-opus:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-opus:\n         framed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstopusparse",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "pcapparse": {
        "description": "Element parsing raw pcap streams",
        "elements": {
            "irtspparse": {
                "author": "Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>",
                "description": "Parses a raw interleaved RTSP stream",
                "hierarchy": [
                    "GstIRTSPParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Raw/Parser",
                "long-name": "IRTSPParse",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\napplication/x-rtcp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "channel-id": {
                        "blurb": "Channel Identifier",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "pcapparse": {
                "author": "Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>",
                "description": "Parses a raw pcap stream",
                "hierarchy": [
                    "GstPcapParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Raw/Parser",
                "long-name": "PCapParse",
                "pad-templates": {
                    "sink": {
                        "caps": "raw/x-pcap:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "caps": {
                        "blurb": "The caps of the source pad",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstCaps",
                        "writable": true
                    },
                    "dst-ip": {
                        "blurb": "Destination IP to restrict to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "dst-port": {
                        "blurb": "Destination port to restrict to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "src-ip": {
                        "blurb": "Source IP to restrict to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "src-port": {
                        "blurb": "Source port to restrict to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "65535",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Relative timestamp offset (ns) to apply (-1 = use absolute packet time)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstpcapparse",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "pnm": {
        "description": "PNM plugin",
        "elements": {
            "pnmdec": {
                "author": "Lutz Mueller <lutz@users.sourceforge.net>",
                "description": "Decodes images in portable pixmap/graymap/bitmap/anymamp (PNM) format",
                "hierarchy": [
                    "GstPnmdec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Image",
                "long-name": "PNM image decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "image/x-portable-bitmap:\nimage/x-portable-graymap:\nimage/x-portable-pixmap:\nimage/x-portable-anymap:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { RGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "pnmenc": {
                "author": "Lutz Mueller <lutz@users.sourceforge.net>",
                "description": "Encodes images into portable pixmap or graymap (PNM) format",
                "hierarchy": [
                    "GstPnmenc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Image",
                "long-name": "PNM image encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { RGB, GRAY8, GRAY16_BE, GRAY16_LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/x-portable-bitmap:\nimage/x-portable-graymap:\nimage/x-portable-pixmap:\nimage/x-portable-anymap:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "ascii": {
                        "blurb": "The output will be ASCII encoded",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstpnm",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "proxy": {
        "description": "plugin for proxied inter-pipeline communication",
        "elements": {
            "proxysink": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Proxy source for internal process communication",
                "hierarchy": [
                    "GstProxySink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink",
                "long-name": "Proxy Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "proxysrc": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Proxy source for internal process communication",
                "hierarchy": [
                    "GstProxySrc",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Source",
                "long-name": "Proxy source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "proxysink": {
                        "blurb": "Matching proxysink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstProxySink",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstproxy",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "removesilence": {
        "description": "Removes silence from an audio stream",
        "elements": {
            "removesilence": {
                "author": "Tiago Katcipis <tiagokatcipis@gmail.com>\n        Paulo Pizarro  <paulo.pizarro@gmail.com>\n        Nicola Murino  <nicola.murino@gmail.com>",
                "description": "Removes all the silence periods from the audio stream.",
                "hierarchy": [
                    "GstRemoveSilence",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "RemoveSilence",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "hysteresis": {
                        "blurb": "Set the hysteresis (on samples) used on the internal VAD",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "480",
                        "max": "18446744073709551615",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "minimum-silence-buffers": {
                        "blurb": "Define the minimum number of consecutive silence buffers before removing silence, 0 means disabled. This will not introduce latency",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "10000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "minimum-silence-time": {
                        "blurb": "Define the minimum silence time in nanoseconds before removing  silence, 0 means disabled. This will not introduce latency",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "10000000000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "remove": {
                        "blurb": "Set to true to remove silence from the stream, false otherwise",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "silent": {
                        "blurb": "Disable/enable bus message notifications for silence detected/finished",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "squash": {
                        "blurb": "Set to true to retimestamp buffers when silence is removed and so avoid timestamp gap",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "threshold": {
                        "blurb": "Set the silence threshold used on the internal VAD in dB",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-60",
                        "max": "70",
                        "min": "-70",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstremovesilence",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "resindvd": {
        "description": "Resin DVD playback elements",
        "elements": {
            "rsndvdbin": {
                "author": "Jan Schmidt <thaytan@noraisin.net>",
                "description": "DVD playback element",
                "hierarchy": [
                    "RsnDvdBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Generic/Bin/Player",
                "long-name": "rsndvdbin",
                "pad-templates": {
                    "audio": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "subpicture": {
                        "caps": "subpicture/x-dvd:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "video": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "DVD device location",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/dev/dvd",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {}
            }
        },
        "filename": "gstresindvd",
        "license": "GPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rfbsrc": {
        "description": "Connects to a VNC server and decodes RFB stream",
        "elements": {
            "rfbsrc": {
                "author": "David A. Schleef <ds@schleef.org>, Andre Moreira Magalhaes <andre.magalhaes@indt.org.br>, Thijs Vermeir <thijsvermeir@gmail.com>",
                "description": "Creates a rfb video stream",
                "hierarchy": [
                    "GstRfbSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "Rfb source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGBx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xRGB\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: xBGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "height": {
                        "blurb": "height of screen",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "host": {
                        "blurb": "Host to connect to",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "127.0.0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "incremental": {
                        "blurb": "Incremental updates",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "offset-x": {
                        "blurb": "x offset for screen scrapping",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "offset-y": {
                        "blurb": "y offset for screen scrapping",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "password": {
                        "blurb": "Password for authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": false,
                        "type": "gchararray",
                        "writable": true
                    },
                    "port": {
                        "blurb": "Port",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5900",
                        "max": "65535",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "shared": {
                        "blurb": "Share desktop with other clients",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "use-copyrect": {
                        "blurb": "Use copyrect encoding",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "version": {
                        "blurb": "RFB protocol version",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3.3",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "view-only": {
                        "blurb": "only view the desktop",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "width": {
                        "blurb": "width of screen",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstrfbsrc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rist": {
        "description": "Source and Sink for RIST TR-06-1 streaming specification",
        "elements": {
            "ristrtpdeext": {
                "author": "Olivier Crete <olivier.crete@collabora.com",
                "description": "Removes RIST TR-06-2 RTP Header extension",
                "hierarchy": [
                    "GstRistRtpDeext",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network",
                "long-name": "RIST RTP Extension remover",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "have-ext-seqnum": {
                        "blurb": "Has an extended sequence number extension been seen",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "max-ext-seqnum": {
                        "blurb": "Largest extended sequence number received",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "none"
            },
            "ristrtpext": {
                "author": "Olivier Crete <olivier.crete@collabora.com",
                "description": "Adds RIST TR-06-2 RTP Header extension",
                "hierarchy": [
                    "GstRistRtpExt",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network",
                "long-name": "RIST RTP Extension adder",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "drop-null-ts-packets": {
                        "blurb": "Drop null MPEG-TS packet and replace them with a custom header extension.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "sequence-number-extension": {
                        "blurb": "Add sequence number extension to packets.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "ristrtxreceive": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com>",
                "description": "Receive retransmitted RIST packets according to VSF TR-06-1",
                "hierarchy": [
                    "GstRistRtxReceive",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec",
                "long-name": "RIST Retransmission receiver",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "num-rtx-packets": {
                        "blurb": " Number of retransmission packets received",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "num-rtx-requests": {
                        "blurb": "Number of retransmission events received",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "none"
            },
            "ristrtxsend": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com>",
                "description": "Retransmit RTP packets when needed, according to VSF TR-06-1",
                "hierarchy": [
                    "GstRistRtxSend",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec",
                "long-name": "RIST Retransmission Sender",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n     clock-rate: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "max-size-packets": {
                        "blurb": "Amount of packets to queue (0 = unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "32767",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "max-size-time": {
                        "blurb": "Amount of ms to queue (0 = unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "num-rtx-packets": {
                        "blurb": " Number of retransmission packets sent",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "num-rtx-requests": {
                        "blurb": "Number of retransmission events received",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    }
                },
                "rank": "none"
            },
            "ristsink": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com",
                "description": "Sink that implements RIST TR-06-1 streaming specification",
                "hierarchy": [
                    "GstRistSink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Source/Network",
                "long-name": "RIST Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "address": {
                        "blurb": "Address to send packets to (can be IPv4 or IPv6).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "localhost",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "bonding-addresses": {
                        "blurb": "Comma (,) separated list of <address>:<port> to send to. ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "localhost:5004",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "bonding-method": {
                        "blurb": "Defines the bonding method to use.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "broadcast (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstRistBondingMethodType",
                        "writable": true
                    },
                    "cname": {
                        "blurb": "Set the CNAME in the SDES block of the sender report.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "dispatcher": {
                        "blurb": "An element that takes care of multi-plexing bonded links. When set \"bonding-method\" is ignored.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "drop-null-ts-packets": {
                        "blurb": "Drop null MPEG-TS packet and replace them with a custom header extension.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "max-rtcp-bandwidth": {
                        "blurb": "The maximum bandwidth used for RTCP as a fraction of RTP bandwdith",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.05",
                        "max": "0.05",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "min-rtcp-interval": {
                        "blurb": "The minimum interval (in ms) between two regular successive RTCP packets.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "multicast-iface": {
                        "blurb": "The multicast interface to use to send packets.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "multicast-loopback": {
                        "blurb": "When enabled, the packet will be received locally.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "multicast-ttl": {
                        "blurb": "The multicast time-to-live parameter.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "port": {
                        "blurb": "The port RTP packets will be sent, the RTCP port is this value + 1. This port must be an even number.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5004",
                        "max": "65534",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "sender-buffer": {
                        "blurb": "Size of the retransmission queue (in ms)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1200",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "sequence-number-extension": {
                        "blurb": "Add sequence number extension to packets.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Statistic in a GstStructure named 'rist/x-sender-stats'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rist/x-sender-stats, sent-original-packets=(guint64)0, sent-retransmitted-packets=(guint64)0, session-stats=(GValueArray)< \"rist/x-sender-session-stats\\,\\ session-id\\=\\(int\\)0\\,\\ sent-original-packets\\=\\(guint64\\)0\\,\\ sent-retransmitted-packets\\=\\(guint64\\)0\\,\\ round-trip-time\\=\\(guint64\\)0\\;\" >;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "stats-update-interval": {
                        "blurb": "The interval between 'stats' update notification (in ms) (0 disabled)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "ristsrc": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com",
                "description": "Source that implements RIST TR-06-1 streaming specification",
                "hierarchy": [
                    "GstRistSrc",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "RIST Source",
                "pad-templates": {
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "address": {
                        "blurb": "Address to receive packets from (can be IPv4 or IPv6).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.0.0.0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "bonding-addresses": {
                        "blurb": "Comma (,) separated list of <address>:<port> to receive from. Only used if 'enable-bonding' is set.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.0.0.0:5004",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "cname": {
                        "blurb": "Set the CNAME in the SDES block of the receiver report.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "max-rtcp-bandwidth": {
                        "blurb": "The maximum bandwidth used for RTCP as a fraction of RTP bandwdith",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.05",
                        "max": "0.05",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "max-rtx-retries": {
                        "blurb": "The maximum number of retransmission requests for a lost packet.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "7",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "min-rtcp-interval": {
                        "blurb": "The minimum interval (in ms) between two successive RTCP packets",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "multicast-iface": {
                        "blurb": "The multicast interface to use to send packets.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "multicast-loopback": {
                        "blurb": "When enabled, the packets will be received locally.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "multicast-ttl": {
                        "blurb": "The multicast time-to-live parameter.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "port": {
                        "blurb": "The port to listen for RTP packets, the RTCP port is this value + 1. This port must be an even number.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5004",
                        "max": "65534",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "receiver-buffer": {
                        "blurb": "Buffering duration (in ms)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "reorder-section": {
                        "blurb": "Time to wait before sending retransmission request (in ms)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "70",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Statistic in a GstStructure named 'rist/x-receiver-stats'",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rist/x-receiver-stats, dropped=(guint64)0, received=(guint64)0, recovered=(guint64)0, permanently-lost=(guint64)0, duplicates=(guint64)0, retransmission-requests-sent=(guint64)0, rtx-roundtrip-time=(guint64)0, session-stats=(GValueArray)< \"rist/x-receiver-session-stats\\,\\ session-id\\=\\(int\\)0\\,\\ rtp-from\\=\\(string\\)\\\"\\\"\\,\\ rtcp-from\\=\\(string\\)\\\"\\\"\\,\\ dropped\\=\\(guint64\\)0\\,\\ received\\=\\(guint64\\)0\\;\" >;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "stats-update-interval": {
                        "blurb": "The interval between 'stats' update notification (in ms) (0 disabled)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "roundrobin": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com",
                "description": "A round robin dispatcher element.",
                "hierarchy": [
                    "GstRoundRobin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Network",
                "long-name": "Round Robin",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src_%%d": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "request"
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstrist",
        "license": "LGPL",
        "other-types": {
            "GstRistBondingMethodType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_RIST_BONDING_METHOD_BROADCAST",
                        "name": "broadcast",
                        "value": "0"
                    },
                    {
                        "desc": "GST_RIST_BONDING_METHOD_ROUND_ROBIN",
                        "name": "round-robin",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rsvg": {
        "description": "RSVG plugin library",
        "elements": {
            "rsvgdec": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Uses librsvg to decode SVG images",
                "hierarchy": [
                    "GstRsvgDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Image",
                "long-name": "SVG image decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "image/svg+xml:\nimage/svg:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "rsvgoverlay": {
                "author": "Olivier Aubert <olivier.aubert@liris.cnrs.fr>",
                "description": "Overlays SVG graphics over a video stream",
                "hierarchy": [
                    "GstRsvgOverlay",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Editor/Video",
                "long-name": "RSVG overlay",
                "pad-templates": {
                    "data_sink": {
                        "caps": "image/svg+xml:\nimage/svg:\ntext/plain:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "sink": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "data": {
                        "blurb": "SVG data.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": false,
                        "type": "gchararray",
                        "writable": true
                    },
                    "fit-to-frame": {
                        "blurb": "Fit the SVG to fill the whole frame.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Specify a height in pixels.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483647",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "height-relative": {
                        "blurb": "Specify a height relative to the display size.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3.40282e+38",
                        "min": "-3.40282e+38",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "location": {
                        "blurb": "SVG file location.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": false,
                        "type": "gchararray",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Specify a width in pixels.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483647",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "width-relative": {
                        "blurb": "Specify a width relative to the display size.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3.40282e+38",
                        "min": "-3.40282e+38",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "x": {
                        "blurb": "Specify an x offset.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483647",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "x-relative": {
                        "blurb": "Specify an x offset relative to the display size.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3.40282e+38",
                        "min": "-3.40282e+38",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Specify a y offset.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483647",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "y-relative": {
                        "blurb": "Specify a y offset relative to the display size.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3.40282e+38",
                        "min": "-3.40282e+38",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstrsvg",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rtmp": {
        "description": "RTMP source and sink",
        "elements": {
            "rtmpsink": {
                "author": "Jan Schmidt <thaytan@noraisin.net>",
                "description": "Sends FLV content to a server via RTMP",
                "hierarchy": [
                    "GstRTMPSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Sink/Network",
                "long-name": "RTMP output sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-flv:\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "location": {
                        "blurb": "RTMP url",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "rtmpsrc": {
                "author": "Bastien Nocera <hadess@hadess.net>, Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Read RTMP streams",
                "hierarchy": [
                    "GstRTMPSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/File",
                "long-name": "RTMP Source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "location": {
                        "blurb": "Location of the RTMP url to read",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Time without receiving any data from the server to wait before to timeout the session",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "120",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstrtmp",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rtmp2": {
        "description": "RTMP plugin",
        "elements": {
            "rtmp2sink": {
                "author": "Make.TV, Inc. <info@make.tv>",
                "description": "Sink element for RTMP streams",
                "hierarchy": [
                    "GstRtmp2Sink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler",
                    "GstRtmpLocationHandler"
                ],
                "klass": "Sink",
                "long-name": "RTMP sink element",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-flv:\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "async-connect": {
                        "blurb": "Connect on READY, otherwise on first push",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "chunk-size": {
                        "blurb": "RTMP chunk size",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "128",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "peak-kbps": {
                        "blurb": "Bitrate in kbit/sec to pace outgoing packets",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "17179869",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Retrieve a statistics structure",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "GstRtmpConnectionStats, in-chunk-size=(uint)0, out-chunk-size=(uint)0, in-window-ack-size=(uint)0, out-window-ack-size=(uint)0, in-bytes-total=(guint64)0, out-bytes-total=(guint64)0, in-bytes-acked=(guint64)0, out-bytes-acked=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    }
                },
                "rank": "primary + 1"
            },
            "rtmp2src": {
                "author": "Make.TV, Inc. <info@make.tv>",
                "description": "Source element for RTMP streams",
                "hierarchy": [
                    "GstRtmp2Src",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler",
                    "GstRtmpLocationHandler"
                ],
                "klass": "Source",
                "long-name": "RTMP source element",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-flv:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "async-connect": {
                        "blurb": "Connect on READY, otherwise on first push",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "idle-timeout": {
                        "blurb": "The maximum allowed time in seconds for valid packets not to arrive from the peer (0 = no timeout)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Retrieve a statistics structure",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "GstRtmpConnectionStats, in-chunk-size=(uint)0, out-chunk-size=(uint)0, in-window-ack-size=(uint)0, out-window-ack-size=(uint)0, in-bytes-total=(guint64)0, out-bytes-total=(guint64)0, in-bytes-acked=(guint64)0, out-bytes-acked=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    }
                },
                "rank": "primary + 1"
            }
        },
        "filename": "gstrtmp2",
        "license": "LGPL",
        "other-types": {
            "GstRtmpAuthmod": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_RTMP_AUTHMOD_NONE",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "GST_RTMP_AUTHMOD_AUTO",
                        "name": "auto",
                        "value": "1"
                    },
                    {
                        "desc": "GST_RTMP_AUTHMOD_ADOBE",
                        "name": "adobe",
                        "value": "2"
                    }
                ]
            },
            "GstRtmpLocationHandler": {
                "hierarchy": [
                    "GstRtmpLocationHandler",
                    "GInterface"
                ],
                "kind": "interface",
                "properties": {
                    "application": {
                        "blurb": "RTMP application path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "live",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "authmod": {
                        "blurb": "RTMP authorization mode",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "auto (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstRtmpAuthmod",
                        "writable": true
                    },
                    "flash-version": {
                        "blurb": "Flash version reported to the server",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "LNX 10,0,32,18",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "host": {
                        "blurb": "RTMP server host name",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "localhost",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "location": {
                        "blurb": "Location of RTMP stream to access",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rtmp://localhost/live/myStream",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "password": {
                        "blurb": "RTMP authorization password",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "port": {
                        "blurb": "RTMP server port",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1935",
                        "max": "65535",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "scheme": {
                        "blurb": "RTMP connection scheme",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rtmp (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstRtmpScheme",
                        "writable": true
                    },
                    "secure-token": {
                        "blurb": "RTMP authorization token",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "stream": {
                        "blurb": "RTMP stream path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "myStream",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "RTMP timeout in seconds",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "tls-validation-flags": {
                        "blurb": "TLS validation flags to use",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "validate-all",
                        "mutable": "null",
                        "readable": true,
                        "type": "GTlsCertificateFlags",
                        "writable": true
                    },
                    "username": {
                        "blurb": "RTMP authorization user name",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                }
            },
            "GstRtmpScheme": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_RTMP_SCHEME_RTMP",
                        "name": "rtmp",
                        "value": "0"
                    },
                    {
                        "desc": "GST_RTMP_SCHEME_RTMPS",
                        "name": "rtmps",
                        "value": "1"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rtpmanagerbad": {
        "description": "GStreamer RTP Plugins",
        "elements": {
            "rtpsink": {
                "author": "Marc Leeman <marc.leeman@gmail.com>",
                "description": "Simple RTP sink",
                "hierarchy": [
                    "GstRtpSink",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Generic/Bin/Sink",
                "long-name": "RTP Sink element",
                "pad-templates": {
                    "sink_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "request"
                    }
                },
                "properties": {
                    "address": {
                        "blurb": "Address to send packets to (can be IPv4 or IPv6).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.0.0.0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "multicast-iface": {
                        "blurb": "The network interface on which to join the multicast group.This allows multiple interfaces separated by comma. (\"eth0,eth1\")",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "port": {
                        "blurb": "The port RTP packets will be sent, the RTCP port is this value + 1. This port must be an even number.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5004",
                        "max": "65534",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "ttl": {
                        "blurb": "Used for setting the unicast TTL parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "64",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ttl-mc": {
                        "blurb": "Used for setting the multicast TTL parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "uri": {
                        "blurb": "URI in the form of rtp://host:port?query",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rtp://0.0.0.0:5004",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "primary + 1"
            },
            "rtpsrc": {
                "author": "Marc Leeman <marc.leeman@gmail.com>",
                "description": "Simple RTP src",
                "hierarchy": [
                    "GstRtpSrc",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Generic/Bin/Src",
                "long-name": "RTP Source element",
                "pad-templates": {
                    "src_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "address": {
                        "blurb": "Address to receive packets from (can be IPv4 or IPv6).",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.0.0.0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "encoding-name": {
                        "blurb": "Encoding name use to determine caps parameters",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "latency": {
                        "blurb": "Default amount of ms to buffer in the jitterbuffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "200",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "multicast-iface": {
                        "blurb": "The network interface on which to join the multicast group.This allows multiple interfaces separated by comma. (\"eth0,eth1\")",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "port": {
                        "blurb": "The port to listen for RTP packets, the RTCP port is this value + 1. This port must be an even number.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5004",
                        "max": "65534",
                        "min": "2",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "ttl": {
                        "blurb": "Used for setting the unicast TTL parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "64",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ttl-mc": {
                        "blurb": "Used for setting the multicast TTL parameter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "255",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "uri": {
                        "blurb": "URI in the form of rtp://host:port?query",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "rtp://0.0.0.0:5004",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "primary + 1",
                "signals": {}
            }
        },
        "filename": "gstrtpmanagerbad",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "rtponvif": {
        "description": "ONVIF Streaming features",
        "elements": {
            "rtponvifparse": {
                "author": "Guillaume Desmottes <guillaume.desmottes@collabora.com>",
                "description": "Add absolute timestamps and flags of recorded data in a playback session",
                "hierarchy": [
                    "GstRtpOnvifParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Effect/RTP",
                "long-name": "ONVIF NTP timestamps RTP extension",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "rtponviftimestamp": {
                "author": "Guillaume Desmottes <guillaume.desmottes@collabora.com>",
                "description": "Add absolute timestamps and flags of recorded data in a playback session",
                "hierarchy": [
                    "GstRtpOnvifTimestamp",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Effect/RTP",
                "long-name": "ONVIF NTP timestamps RTP extension",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cseq": {
                        "blurb": "The RTSP CSeq which initiated the playback",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "drop-out-of-segment": {
                        "blurb": "Whether the element should drop buffers that fall outside the segment, not part of the specification but allows full reverse playback.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ntp-offset": {
                        "blurb": "Offset between the pipeline running time and the absolute UTC time, in nano-seconds since 1900 (-1 for automatic computation)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "set-e-bit": {
                        "blurb": "If the element should set the 'E' bit as defined in the ONVIF RTP extension. This increases latency by one packet",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "set-t-bit": {
                        "blurb": "If the element should set the 'T' bit as defined in the ONVIF RTP extension. This increases latency by one packet",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstrtponvif",
        "license": "unknown",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "sbc": {
        "description": "SBC bluetooth audio support",
        "elements": {
            "sbcdec": {
                "author": "Marcel Holtmann <marcel@holtmann.org>",
                "description": "Decode an SBC audio stream",
                "hierarchy": [
                    "GstSbcDec",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "Bluetooth SBC audio decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-sbc:\n       channels: [ 1, 2 ]\n           rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n         parsed: true\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n       channels: [ 1, 2 ]\n         layout: interleaved\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "sbcenc": {
                "author": "Marcel Holtmann <marcel@holtmann.org>",
                "description": "Encode an SBC audio stream",
                "hierarchy": [
                    "GstSbcEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "Bluetooth SBC audio encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-sbc:\n           rate: { (int)16000, (int)32000, (int)44100, (int)48000 }\n       channels: [ 1, 2 ]\n   channel-mode: { (string)mono, (string)dual, (string)stereo, (string)joint }\n         blocks: { (int)4, (int)8, (int)12, (int)16 }\n       subbands: { (int)4, (int)8 }\nallocation-method: { (string)snr, (string)loudness }\n        bitpool: [ 2, 64 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstsbc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "sctp": {
        "description": "SCTP encoder/decoder plugin",
        "elements": {
            "sctpdec": {
                "author": "George Kiagiadakis <george.kiagiadakis@collabora.com>",
                "description": "Decodes packets with SCTP",
                "hierarchy": [
                    "GstSctpDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Decoder/Network/SCTP",
                "long-name": "SCTP Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-sctp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src_%%u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "local-sctp-port": {
                        "blurb": "Local sctp port for the sctp association. The remote port is configured via the GstSctpEnc element.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "sctp-association-id": {
                        "blurb": "Every encoder/decoder pair should have the same, unique, sctp-association-id. This value must be set before any pads are requested.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "reset-stream": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "sctpenc": {
                "author": "George Kiagiadakis <george.kiagiadakis@collabora.com>",
                "description": "Encodes packets with SCTP",
                "hierarchy": [
                    "GstSctpEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Encoder/Network/SCTP",
                "long-name": "SCTP Encoder",
                "pad-templates": {
                    "sink_%%u": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "src": {
                        "caps": "application/x-sctp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "remote-sctp-port": {
                        "blurb": "Sctp remote sctp port for the sctp association. The local port is configured via the GstSctpDec element.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "65535",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "sctp-association-id": {
                        "blurb": "Every encoder/decoder pair should have the same, unique, sctp-association-id. This value must be set before any pads are requested.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "use-sock-stream": {
                        "blurb": "When set to TRUE, a sequenced, reliable, connection-based connection is used.When TRUE the partial reliability parameters of the channel are ignored.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "bytes-sent": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            }
                        ],
                        "return-type": "guint64",
                        "when": "last"
                    },
                    "sctp-association-established": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gboolean"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstsctp",
        "license": "BSD",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "sdpelem": {
        "description": "configure streaming sessions using SDP",
        "elements": {
            "sdpdemux": {
                "author": "Wim Taymans <wim.taymans@gmail.com>",
                "description": "Receive data over the network via SDP",
                "hierarchy": [
                    "GstSDPDemux",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Codec/Demuxer/Network/RTP",
                "long-name": "SDP session setup",
                "pad-templates": {
                    "sink": {
                        "caps": "application/sdp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "stream_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "debug": {
                        "blurb": "Dump request and response messages to stdout",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "latency": {
                        "blurb": "Amount of ms to buffer",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "200",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "redirect": {
                        "blurb": "Sends a redirection message instead of using a custom session element",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Fail transport after UDP timeout microseconds (0 = disabled)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {}
            },
            "sdpsrc": {
                "author": "Sebastian Dröge <sebastian@centricular.com>",
                "description": "Stream RTP based on an SDP",
                "hierarchy": [
                    "GstSdpSrc",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy",
                    "GstURIHandler"
                ],
                "klass": "Source/Network/RTP",
                "long-name": "SDP Source",
                "pad-templates": {
                    "stream_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "location": {
                        "blurb": "URI to SDP file (sdp:///path/to/file)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "sdp": {
                        "blurb": "SDP description used instead of location",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {}
            }
        },
        "filename": "gstsdpelem",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "segmentclip": {
        "description": "Segment clip elements",
        "elements": {
            "audiosegmentclip": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Clips audio buffers to the configured segment",
                "hierarchy": [
                    "GstAudioSegmentClip",
                    "GstSegmentClip",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Audio",
                "long-name": "Audio buffer segment clipper",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "videosegmentclip": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Clips video buffers to the configured segment",
                "hierarchy": [
                    "GstVideoSegmentClip",
                    "GstSegmentClip",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Video buffer segment clipper",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstsegmentclip",
        "license": "LGPL",
        "other-types": {
            "GstSegmentClip": {
                "hierarchy": [
                    "GstSegmentClip",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "shm": {
        "description": "shared memory sink source",
        "elements": {
            "shmsink": {
                "author": "Olivier Crete <olivier.crete@collabora.co.uk>",
                "description": "Send data over shared memory to the matching source",
                "hierarchy": [
                    "GstShmSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink",
                "long-name": "Shared Memory Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "buffer-time": {
                        "blurb": "Maximum Size of the shm buffer in nanoseconds (-1 to disable)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "perms": {
                        "blurb": "Permissions to set on the shm area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "416",
                        "max": "4095",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "shm-size": {
                        "blurb": "Size of the shared memory area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "67108864",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "socket-path": {
                        "blurb": "The path to the control socket used to control the shared memory transport. This may be modified during the NULL->READY transition",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "wait-for-connection": {
                        "blurb": "Block the stream until the shm pipe is connected",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "client-connected": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "client-disconnected": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "shmsrc": {
                "author": "Olivier Crete <olivier.crete@collabora.co.uk>",
                "description": "Receive data from the shared memory sink",
                "hierarchy": [
                    "GstShmSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source",
                "long-name": "Shared Memory Source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "is-live": {
                        "blurb": "True if the element cannot produce data in PAUSED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "shm-area-name": {
                        "blurb": "The name of the shared memory area used to get buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "socket-path": {
                        "blurb": "The path to the control socket used to control the shared memory",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstshm",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "siren": {
        "description": "Siren encoder/decoder/payloader/depayloader plugins",
        "elements": {
            "sirendec": {
                "author": "Youness Alaoui <kakaroto@kakaroto.homelinux.net>",
                "description": "Decode streams encoded with the Siren7 codec into 16bit PCM",
                "hierarchy": [
                    "GstSirenDec",
                    "GstAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio ",
                "long-name": "Siren Decoder element",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-siren:\n     dct-length: 320\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: 16000\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "marginal"
            },
            "sirenenc": {
                "author": "Youness Alaoui <kakaroto@kakaroto.homelinux.net>",
                "description": "Encode 16bit PCM streams into the Siren7 codec",
                "hierarchy": [
                    "GstSirenEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio ",
                "long-name": "Siren Encoder element",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: 16000\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-siren:\n     dct-length: 320\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "marginal"
            }
        },
        "filename": "gstsiren",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "smooth": {
        "description": "Apply a smooth filter to an image",
        "elements": {
            "smooth": {
                "author": "Wim Taymans <wim.taymans@chello.be>",
                "description": "Apply a smooth filter to an image",
                "hierarchy": [
                    "GstSmooth",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Smooth effect",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: I420\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: I420\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "active": {
                        "blurb": "process video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "filter-size": {
                        "blurb": "size of media filter",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "luma-only": {
                        "blurb": "only filter luma part",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tolerance": {
                        "blurb": "contrast tolerance for smoothing",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "8",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstsmooth",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "smoothstreaming": {
        "description": "Microsoft's Smooth Streaming format support ",
        "elements": {
            "mssdemux": {
                "author": "Thiago Santos <thiago.sousa.santos@collabora.com>",
                "description": "Parse and demultiplex a Smooth Streaming manifest into audio and video streams",
                "hierarchy": [
                    "GstMssDemux",
                    "GstAdaptiveDemux",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Codec/Demuxer/Adaptive",
                "long-name": "Smooth Streaming demuxer",
                "pad-templates": {
                    "audio_%%02u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "sink": {
                        "caps": "application/vnd.ms-sstr+xml:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "video_%%02u": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "max-queue-size-buffers": {
                        "blurb": "Maximum buffers that can be stored in each internal stream queue (0 = infinite) (deprecated)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {}
            }
        },
        "filename": "gstsmoothstreaming",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "sndfile": {
        "description": "use libsndfile to read and write various audio formats",
        "elements": {
            "sfdec": {
                "author": "Stefan Sauer <ensonic@user.sf.net>",
                "description": "Read audio streams using libsndfile",
                "hierarchy": [
                    "GstSFDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Decoder/Audio",
                "long-name": "Sndfile decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-ircam:\naudio/x-nist:\naudio/x-paris:\naudio/x-rf64:\naudio/x-sds:\naudio/x-svx:\naudio/x-voc:\naudio/x-w64:\naudio/x-xi:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F32LE, S32LE, S16LE }\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstsndfile",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "soundtouch": {
        "description": "Audio Pitch Controller & BPM Detection",
        "elements": {
            "bpmdetect": {
                "author": "Sebastian Dröge <slomo@circular-chaos.org>",
                "description": "Detect the BPM of an audio stream",
                "hierarchy": [
                    "GstBPMDetect",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Audio",
                "long-name": "BPM Detector",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n           rate: [ 8000, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n           rate: [ 8000, 2147483647 ]\n       channels: [ 1, 2 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "pitch": {
                "author": "Wouter Paesen <wouter@blue-gate.be>",
                "description": "Control the pitch of an audio stream",
                "hierarchy": [
                    "GstPitch",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "Pitch controller",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: F32LE\n           rate: [ 8000, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: F32LE\n           rate: [ 8000, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "output-rate": {
                        "blurb": "Output rate on downstream segment events",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "pitch": {
                        "blurb": "Audio stream pitch",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "rate": {
                        "blurb": "Audio stream rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "tempo": {
                        "blurb": "Audio stream tempo",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "1",
                        "max": "10",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstsoundtouch",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "spandsp": {
        "description": "libspandsp plugin",
        "elements": {
            "dtmfdetect": {
                "author": "Olivier Crete <olivier.crete@collabora.com>",
                "description": "This element detects DTMF tones",
                "hierarchy": [
                    "GstDtmfDetect",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Audio",
                "long-name": "DTMF detector element",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: 8000\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: 8000\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "qos": {
                        "blurb": "Handle Quality-of-Service events",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "marginal"
            },
            "spanplc": {
                "author": "Youness Alaoui <youness.alaoui@collabora.co.uk>",
                "description": "Adds packet loss concealment to audio",
                "hierarchy": [
                    "GstSpanPlc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "SpanDSP PLC",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "stats": {
                        "blurb": "Various statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    }
                },
                "rank": "primary"
            },
            "tonegeneratesrc": {
                "author": "Iskratel <www.iskratel.com>",
                "description": "Creates telephony signals of given frequency, volume, cadence",
                "hierarchy": [
                    "GstToneGenerateSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio",
                "long-name": "Telephony Tone  Generator source",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: 8000\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "blocksize": {
                        "blurb": "Size in bytes to read per buffer (-1 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2048",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "do-timestamp": {
                        "blurb": "Apply current stream time to buffers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "freq": {
                        "blurb": "Frequency of test signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "20000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "freq2": {
                        "blurb": "Frequency of second telephony tone component",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "20000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-buffers": {
                        "blurb": "Number of buffers to output before sending EOS (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "off-time": {
                        "blurb": "Time of the first period  when the tone signal is off",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "off-time2": {
                        "blurb": "Time of the second period  when the tone signal is off",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "on-time": {
                        "blurb": "Time of the first period  when the tone signal is present",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "on-time2": {
                        "blurb": "Time of the second period  when the tone signal is present",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "repeat": {
                        "blurb": "Whether to repeat specified tone indefinitely",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "samplesperbuffer": {
                        "blurb": "Number of samples in each outgoing buffer",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "typefind": {
                        "blurb": "Run typefind before negotiating (deprecated, non-functional)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "volume": {
                        "blurb": "Volume of first signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "0",
                        "min": "-50",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "volume2": {
                        "blurb": "Volume of second tone signal",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "0",
                        "min": "-50",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstspandsp",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "speed": {
        "description": "Set speed/pitch on audio/raw streams (resampler)",
        "elements": {
            "speed": {
                "author": "Andy Wingo <apwingo@eos.ncsu.edu>, Tim-Philipp Müller <tim@centricular.net>",
                "description": "Set speed/pitch on audio/raw streams (resampler)",
                "hierarchy": [
                    "GstSpeed",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Audio",
                "long-name": "Speed",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F32LE, S16LE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F32LE, S16LE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "speed": {
                        "blurb": "speed",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "40",
                        "min": "0.1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstspeed",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "srt": {
        "description": "transfer data via SRT",
        "elements": {
            "srtclientsink": {
                "author": "Justin Kim <justin.joy.9to5@gmail.com>",
                "description": "Send data over the network via SRT",
                "hierarchy": [
                    "GstSRTClientSink",
                    "GstSRTSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Sink/Network",
                "long-name": "SRT sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none",
                "signals": {}
            },
            "srtclientsrc": {
                "author": "Justin Kim <justin.joy.9to5@gmail.com>",
                "description": "Receive data over the network via SRT",
                "hierarchy": [
                    "GstSRTClientSrc",
                    "GstSRTSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "SRT source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none",
                "signals": {}
            },
            "srtserversink": {
                "author": "Justin Kim <justin.joy.9to5@gmail.com>",
                "description": "Send data over the network via SRT",
                "hierarchy": [
                    "GstSRTServerSink",
                    "GstSRTSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Sink/Network",
                "long-name": "SRT sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none",
                "signals": {}
            },
            "srtserversrc": {
                "author": "Justin Kim <justin.joy.9to5@gmail.com>",
                "description": "Receive data over the network via SRT",
                "hierarchy": [
                    "GstSRTServerSrc",
                    "GstSRTSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "SRT source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none",
                "signals": {}
            },
            "srtsink": {
                "author": "Justin Kim <justin.joy.9to5@gmail.com>",
                "description": "Send data over the network via SRT",
                "hierarchy": [
                    "GstSRTSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Sink/Network",
                "long-name": "SRT sink",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "latency": {
                        "blurb": "Minimum latency (milliseconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "125",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "localaddress": {
                        "blurb": "Local address to bind",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "localport": {
                        "blurb": "Local port to bind",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "7001",
                        "max": "65535",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "SRT connection mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "caller (1)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstSRTConnectionMode",
                        "writable": true
                    },
                    "passphrase": {
                        "blurb": "Password for the encrypted transmission",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "ready",
                        "readable": false,
                        "type": "gchararray",
                        "writable": true
                    },
                    "pbkeylen": {
                        "blurb": "Crypto key length in bytes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "no-key (0)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstSRTKeyLength",
                        "writable": true
                    },
                    "poll-timeout": {
                        "blurb": "Return poll wait after timeout milliseconds (-1 = infinite)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "SRT Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-srt-statistics, bytes-sent-total=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "streamid": {
                        "blurb": "Stream ID for the SRT access control",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "uri": {
                        "blurb": "URI in the form of srt://address:port",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "srt://127.0.0.1:7001",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "wait-for-connection": {
                        "blurb": "Block the stream until a client connects",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {
                    "caller-added": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            },
                            {
                                "name": "arg1",
                                "type": "GSocketAddress"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "caller-removed": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            },
                            {
                                "name": "arg1",
                                "type": "GSocketAddress"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            },
            "srtsrc": {
                "author": "Justin Kim <justin.joy.9to5@gmail.com>",
                "description": "Receive data over the network via SRT",
                "hierarchy": [
                    "GstSRTSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Network",
                "long-name": "SRT source",
                "pad-templates": {
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "latency": {
                        "blurb": "Minimum latency (milliseconds)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "125",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "localaddress": {
                        "blurb": "Local address to bind",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "localport": {
                        "blurb": "Local port to bind",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "7001",
                        "max": "65535",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "SRT connection mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "caller (1)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstSRTConnectionMode",
                        "writable": true
                    },
                    "passphrase": {
                        "blurb": "Password for the encrypted transmission",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "ready",
                        "readable": false,
                        "type": "gchararray",
                        "writable": true
                    },
                    "pbkeylen": {
                        "blurb": "Crypto key length in bytes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "no-key (0)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstSRTKeyLength",
                        "writable": true
                    },
                    "poll-timeout": {
                        "blurb": "Return poll wait after timeout milliseconds (-1 = infinite)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "SRT Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-srt-statistics, bytes-received-total=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "streamid": {
                        "blurb": "Stream ID for the SRT access control",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "uri": {
                        "blurb": "URI in the form of srt://address:port",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "srt://127.0.0.1:7001",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "wait-for-connection": {
                        "blurb": "Block the stream until a client connects",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {
                    "caller-added": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            },
                            {
                                "name": "arg1",
                                "type": "GSocketAddress"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "caller-removed": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            },
                            {
                                "name": "arg1",
                                "type": "GSocketAddress"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstsrt",
        "license": "LGPL",
        "other-types": {
            "GstSRTConnectionMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_SRT_CONNECTION_MODE_NONE",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "GST_SRT_CONNECTION_MODE_CALLER",
                        "name": "caller",
                        "value": "1"
                    },
                    {
                        "desc": "GST_SRT_CONNECTION_MODE_LISTENER",
                        "name": "listener",
                        "value": "2"
                    },
                    {
                        "desc": "GST_SRT_CONNECTION_MODE_RENDEZVOUS",
                        "name": "rendezvous",
                        "value": "3"
                    }
                ]
            },
            "GstSRTKeyLength": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_SRT_KEY_LENGTH_NO_KEY",
                        "name": "no-key",
                        "value": "0"
                    },
                    {
                        "desc": "GST_SRT_KEY_LENGTH_0",
                        "name": "0",
                        "value": "0"
                    },
                    {
                        "desc": "GST_SRT_KEY_LENGTH_16",
                        "name": "16",
                        "value": "16"
                    },
                    {
                        "desc": "GST_SRT_KEY_LENGTH_24",
                        "name": "24",
                        "value": "24"
                    },
                    {
                        "desc": "GST_SRT_KEY_LENGTH_32",
                        "name": "32",
                        "value": "32"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "srtp": {
        "description": "GStreamer SRTP",
        "elements": {
            "srtpdec": {
                "author": "Gabriel Millaire <millaire.gabriel@collabora.com>",
                "description": "A SRTP and SRTCP decoder",
                "hierarchy": [
                    "GstSrtpDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network/SRTP",
                "long-name": "SRTP decoder",
                "pad-templates": {
                    "rtcp_sink": {
                        "caps": "application/x-srtcp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "rtcp_src": {
                        "caps": "application/x-rtcp:\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "rtp_sink": {
                        "caps": "application/x-srtp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "rtp_src": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "replay-window-size": {
                        "blurb": "Size of the replay protection window",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "128",
                        "max": "32768",
                        "min": "64",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Various statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-srtp-decoder-stats, streams=(int)<  >;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    }
                },
                "rank": "none",
                "signals": {
                    "clear-keys": {
                        "action": true,
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "hard-limit": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            }
                        ],
                        "return-type": "GstCaps",
                        "when": "last"
                    },
                    "remove-key": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "request-key": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            }
                        ],
                        "return-type": "GstCaps",
                        "when": "last"
                    },
                    "soft-limit": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            }
                        ],
                        "return-type": "GstCaps",
                        "when": "last"
                    }
                }
            },
            "srtpenc": {
                "author": "Gabriel Millaire <millaire.gabriel@collabora.com>",
                "description": "A SRTP and SRTCP encoder",
                "hierarchy": [
                    "GstSrtpEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Network/SRTP",
                "long-name": "SRTP encoder",
                "pad-templates": {
                    "rtcp_sink_%%u": {
                        "caps": "application/x-rtcp:\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "rtcp_src_%%u": {
                        "caps": "application/x-srtcp:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    },
                    "rtp_sink_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "rtp_src_%%u": {
                        "caps": "application/x-srtp:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "allow-repeat-tx": {
                        "blurb": "Whether retransmissions of packets with the same sequence number are allowed(Note that such repeated transmissions must have the same RTP payload, or a severe security weakness is introduced!)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "key": {
                        "blurb": "Master key (minimum of 30 and maximum of 46 bytes)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstBuffer",
                        "writable": true
                    },
                    "mki": {
                        "blurb": "Master key Identifier (NULL means no MKI)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "playing",
                        "readable": true,
                        "type": "GstBuffer",
                        "writable": true
                    },
                    "random-key": {
                        "blurb": "Generate a random key if TRUE",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "replay-window-size": {
                        "blurb": "Size of the replay protection window",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "128",
                        "max": "32768",
                        "min": "64",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "rtcp-auth": {
                        "blurb": "RTCP Authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "hmac-sha1-80 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSrtpAuthType",
                        "writable": true
                    },
                    "rtcp-cipher": {
                        "blurb": "RTCP Cipher",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "aes-128-icm (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSrtpCipherType",
                        "writable": true
                    },
                    "rtp-auth": {
                        "blurb": "RTP Authentication",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "hmac-sha1-80 (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSrtpAuthType",
                        "writable": true
                    },
                    "rtp-cipher": {
                        "blurb": "RTP Cipher",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "aes-128-icm (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSrtpCipherType",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Various statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-srtp-encoder-stats, streams=(int)<  >;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    }
                },
                "rank": "none",
                "signals": {
                    "soft-limit": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstsrtp",
        "license": "LGPL",
        "other-types": {
            "GstSrtpAuthType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_SRTP_AUTH_NULL",
                        "name": "null",
                        "value": "0"
                    },
                    {
                        "desc": "GST_SRTP_AUTH_HMAC_SHA1_32",
                        "name": "hmac-sha1-32",
                        "value": "1"
                    },
                    {
                        "desc": "GST_SRTP_AUTH_HMAC_SHA1_80",
                        "name": "hmac-sha1-80",
                        "value": "2"
                    }
                ]
            },
            "GstSrtpCipherType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_SRTP_CIPHER_NULL",
                        "name": "null",
                        "value": "0"
                    },
                    {
                        "desc": "GST_SRTP_CIPHER_AES_128_ICM",
                        "name": "aes-128-icm",
                        "value": "1"
                    },
                    {
                        "desc": "GST_SRTP_CIPHER_AES_256_ICM",
                        "name": "aes-256-icm",
                        "value": "2"
                    },
                    {
                        "desc": "GST_SRTP_CIPHER_AES_128_GCM",
                        "name": "aes-128-gcm",
                        "value": "3"
                    },
                    {
                        "desc": "GST_SRTP_CIPHER_AES_256_GCM",
                        "name": "aes-256-gcm",
                        "value": "4"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "subenc": {
        "description": "subtitle encoders",
        "elements": {
            "srtenc": {
                "author": "Thijs Vermeir <thijsvermeir@gmail.com>",
                "description": "Srt subtitle encoder",
                "hierarchy": [
                    "GstSrtEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Encoder/Subtitle",
                "long-name": "Srt encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "text/x-raw:\n         format: { pango-markup, utf8 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-subtitle:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "duration": {
                        "blurb": "Offset for the duration of the subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "timestamp": {
                        "blurb": "Offset for the starttime for the subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "webvttenc": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "WebVTT subtitle encoder",
                "hierarchy": [
                    "GstWebvttEnc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Encoder/Subtitle",
                "long-name": "WebVTT encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "text/x-raw:\n         format: { pango-markup, utf8 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "application/x-subtitle-vtt:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "duration": {
                        "blurb": "Offset for the duration of the subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "timestamp": {
                        "blurb": "Offset for the starttime for the subtitles",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": true,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstsubenc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "switchbin": {
        "description": "switchbin",
        "elements": {
            "switchbin": {
                "author": "Carlos Rafael Giani <dv@pseudoterminal.org>",
                "description": "Switch between sub-pipelines (paths) based on input caps",
                "hierarchy": [
                    "GstSwitchBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin",
                "long-name": "switchbin",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "current-path": {
                        "blurb": "Currently selected path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "num-paths": {
                        "blurb": "Number of paths",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-2",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstswitchbin",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "teletext": {
        "description": "Teletext plugin",
        "elements": {
            "teletextdec": {
                "author": "Sebastian Pölsterl <sebp@k-d-w.org>, Andoni Morales Alastruey <ylatuya@gmail.com>",
                "description": "Decode a raw VBI stream containing teletext information to RGBA and text",
                "hierarchy": [
                    "GstTeletextDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Decoder",
                "long-name": "Teletext decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-teletext:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\ntext/x-raw:\n         format: { utf-8, pango-markup }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "font-description": {
                        "blurb": "Font description used for the pango output.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "verdana 12",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "page": {
                        "blurb": "Number of page that should displayed",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "999",
                        "min": "100",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "subpage": {
                        "blurb": "Number of sub-page that should displayed (-1 for all)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "153",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "subtitles-mode": {
                        "blurb": "Enables subtitles mode for text output stripping the blank lines and the teletext state lines",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "subtitles-template": {
                        "blurb": "Output template used to print each one of the subtitles lines",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "%%s\\n",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstteletext",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "timecode": {
        "description": "Timecode-related elements",
        "elements": {
            "avwait": {
                "author": "Vivia Nikolaidou <vivia@toolsonair.com>",
                "description": "Drops all audio/video until a specific timecode or running time has been reached",
                "hierarchy": [
                    "GstAvWait",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Audio/Video",
                "long-name": "Timecode Wait",
                "pad-templates": {
                    "asink": {
                        "caps": "audio/x-raw:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "asrc": {
                        "caps": "audio/x-raw:\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "vsink": {
                        "caps": "video/x-raw:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "vsrc": {
                        "caps": "video/x-raw:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "end-running-time": {
                        "blurb": "Running time to end at in running-time mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "end-timecode": {
                        "blurb": "Timecode to end at in timecode mode (object)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoTimeCode",
                        "writable": true
                    },
                    "mode": {
                        "blurb": "Operation mode: What to wait for",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "timecode (0)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstAvWaitMode",
                        "writable": true
                    },
                    "recording": {
                        "blurb": "Whether the element is stopped or recording. If set to FALSE, all buffers will be dropped regardless of settings.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "target-running-time": {
                        "blurb": "Running time to wait for in running-time mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "target-timecode": {
                        "blurb": "Timecode to wait for in timecode mode (object)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstVideoTimeCode",
                        "writable": true
                    },
                    "target-timecode-string": {
                        "blurb": "Timecode to wait for in timecode mode (string). Must take the form 00:00:00:00",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "00:00:00:00",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "timecodestamper": {
                "author": "Vivia Nikolaidou <vivia@toolsonair.com>",
                "description": "Attaches a timecode meta into each video frame",
                "hierarchy": [
                    "GstTimeCodeStamper",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Timecode stamper",
                "pad-templates": {
                    "ltc_sink": {
                        "caps": "audio/x-raw:\n         format: U8\n           rate: [ 1, 2147483647 ]\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "request"
                    },
                    "sink": {
                        "caps": "video/x-raw:\n      framerate: [ 1/2147483647, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n      framerate: [ 1/2147483647, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "auto-resync": {
                        "blurb": "If true resync last known timecode from upstream, otherwise only count up from the last known one",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "drop-frame": {
                        "blurb": "Use drop-frame timecodes for 29.97 and 59.94 FPS",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ltc-auto-resync": {
                        "blurb": "If true the LTC timecode will be automatically resynced if it drifts, otherwise it will only be counted up from the last known one",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ltc-daily-jam": {
                        "blurb": "The daily jam of the LTC timecode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GDateTime",
                        "writable": true
                    },
                    "ltc-extra-latency": {
                        "blurb": "Extra latency to introduce for waiting for LTC timecodes",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "150000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "ltc-timeout": {
                        "blurb": "Time out LTC timecode if no new timecode was detected after this time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "post-messages": {
                        "blurb": "Post element message containing the current timecode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rtc-auto-resync": {
                        "blurb": "If true the RTC timecode will be automatically resynced if it drifts, otherwise it will only be counted up from the last known one",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rtc-max-drift": {
                        "blurb": "Maximum number of nanoseconds the RTC clock is allowed to drift from the video before it is resynced",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "250000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "set": {
                        "blurb": "Choose whether timecodes should be overridden or not",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "keep (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstTimeCodeStamperSet",
                        "writable": true
                    },
                    "set-internal-timecode": {
                        "blurb": "If set, take this timecode as the internal timecode for the first frame and increment from it. Only the values itself and daily jam are taken, flags and frame rate are always determined by timecodestamper itself. If unset, the internal timecode will start at 0 with the daily jam being the current real-time clock time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoTimeCode",
                        "writable": true
                    },
                    "source": {
                        "blurb": "Choose from what source the timecode should be taken",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "internal (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstTimeCodeStamperSource",
                        "writable": true
                    },
                    "timecode-offset": {
                        "blurb": "Add this offset in frames to internal, LTC or RTC timecode, useful if there is an offset between the timecode source and video",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "-2147483648",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "timeout": {
                        "blurb": "Time out upstream timecode if no new timecode was detected after this time",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gsttimecode",
        "license": "LGPL",
        "other-types": {
            "GstAvWaitMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "time code (default)",
                        "name": "timecode",
                        "value": "0"
                    },
                    {
                        "desc": "running time",
                        "name": "running-time",
                        "value": "1"
                    },
                    {
                        "desc": "video first",
                        "name": "video-first",
                        "value": "2"
                    }
                ]
            },
            "GstTimeCodeStamperSet": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Never set timecodes",
                        "name": "never",
                        "value": "0"
                    },
                    {
                        "desc": "Keep upstream timecodes and only set if no upstream timecode",
                        "name": "keep",
                        "value": "1"
                    },
                    {
                        "desc": "Always set timecode and remove upstream timecode",
                        "name": "always",
                        "value": "2"
                    }
                ]
            },
            "GstTimeCodeStamperSource": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Use internal timecode counter, starting at zero or value set by property",
                        "name": "internal",
                        "value": "0"
                    },
                    {
                        "desc": "Always use zero",
                        "name": "zero",
                        "value": "1"
                    },
                    {
                        "desc": "Count up from the last known upstream timecode or internal if unknown",
                        "name": "last-known",
                        "value": "2"
                    },
                    {
                        "desc": "Count up from the last known upstream timecode or zero if unknown",
                        "name": "last-known-or-zero",
                        "value": "3"
                    },
                    {
                        "desc": "Linear timecode from an audio device",
                        "name": "ltc",
                        "value": "4"
                    },
                    {
                        "desc": "Timecode from real time clock",
                        "name": "rtc",
                        "value": "5"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "tinyalsa": {
        "description": "tinyalsa plugin library",
        "elements": {
            "tinyalsasink": {
                "author": "Arun Raghavan <arun@centricular.com>",
                "description": "Plays audio to an ALSA device",
                "hierarchy": [
                    "GstTinyalsaSink",
                    "GstAudioSink",
                    "GstAudioBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Audio",
                "long-name": "tinyalsa Audio Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { S16LE, S32LE, S24_32LE, S8 }\n       channels: [ 1, 2147483647 ]\n           rate: [ 1, 2147483647 ]\n         layout: interleaved\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "alignment-threshold": {
                        "blurb": "Timestamp alignment threshold in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40000000",
                        "max": "18446744073709551614",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "async": {
                        "blurb": "Go asynchronously to PAUSED",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "blocksize": {
                        "blurb": "Size in bytes to pull per buffer (0 = default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4096",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "buffer-time": {
                        "blurb": "Size of audio buffer in microseconds, this is the minimum latency that the sink reports",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "200000",
                        "max": "9223372036854775807",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "can-activate-pull": {
                        "blurb": "Allow pull-based scheduling",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "card": {
                        "blurb": "The ALSA card to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "device": {
                        "blurb": "The ALSA device to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "discont-wait": {
                        "blurb": "Window of time in nanoseconds to wait before creating a discontinuity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000000000",
                        "max": "18446744073709551614",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "drift-tolerance": {
                        "blurb": "Tolerance for clock drift in microseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40000",
                        "max": "9223372036854775807",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "enable-last-sample": {
                        "blurb": "Enable the last-sample property",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "last-sample": {
                        "blurb": "The last sample received in the sink",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstSample",
                        "writable": false
                    },
                    "latency-time": {
                        "blurb": "The minimum amount of data to write in each iteration in microseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000",
                        "max": "9223372036854775807",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "max-bitrate": {
                        "blurb": "The maximum bits per second to render (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "max-lateness": {
                        "blurb": "Maximum number of nanoseconds that a buffer can be late before it is dropped (-1 unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "18446744073709551615",
                        "max": "9223372036854775807",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    },
                    "processing-deadline": {
                        "blurb": "Maximum processing time for a buffer in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "20000000",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "provide-clock": {
                        "blurb": "Provide a clock to be used as the global pipeline clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "qos": {
                        "blurb": "Generate Quality-of-Service events upstream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "render-delay": {
                        "blurb": "Additional render delay of the sink in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "slave-method": {
                        "blurb": "Algorithm used to match the rate of the masterclock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "skew (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstAudioBaseSinkSlaveMethod",
                        "writable": true
                    },
                    "stats": {
                        "blurb": "Sink Statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "application/x-gst-base-sink-stats, average-rate=(double)0, dropped=(guint64)0, rendered=(guint64)0;",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstStructure",
                        "writable": false
                    },
                    "sync": {
                        "blurb": "Sync on the clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "throttle-time": {
                        "blurb": "The time to keep between rendered buffers (0 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "ts-offset": {
                        "blurb": "Timestamp offset in nanoseconds",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "9223372036854775807",
                        "min": "-9223372036854775808",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gsttinyalsa",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "transcode": {
        "description": "A plugin containing elements for transcoding",
        "elements": {
            "transcodebin": {
                "author": "Thibault Saunier <tsaunier@igalia.com>",
                "description": "Autoplug and transcoder a stream",
                "hierarchy": [
                    "GstTranscodeBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin/Encoding",
                "long-name": "Transcode Bin",
                "pad-templates": {
                    "sink": {
                        "caps": "ANY",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "ANY",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "audio-filter": {
                        "blurb": "the audio filter(s) to apply, if possible",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "avoid-reencoding": {
                        "blurb": "Whether to re-encode portions of compatible video streams that lay on segment boundaries",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "profile": {
                        "blurb": "The GstEncodingProfile to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstEncodingProfile",
                        "writable": true
                    },
                    "video-filter": {
                        "blurb": "the video filter(s) to apply, if possible",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "uritranscodebin": {
                "author": "Thibault Saunier <tsaunier@igalia.com>",
                "description": "Autoplug and transcoder media from uris",
                "hierarchy": [
                    "GstUriTranscodeBin",
                    "GstPipeline",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Generic/Bin/Encoding",
                "long-name": "URITranscode Bin",
                "properties": {
                    "audio-filter": {
                        "blurb": "the audio filter(s) to apply, if possible",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    },
                    "avoid-reencoding": {
                        "blurb": "Whether to re-encode portions of compatible video streams that lay on segment boundaries",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cpu-usage": {
                        "blurb": "The percentage of CPU to try to use with the processus running the pipeline driven by the clock",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "100",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "dest-uri": {
                        "blurb": "URI to put output stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "profile": {
                        "blurb": "The GstEncodingProfile to use",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstEncodingProfile",
                        "writable": true
                    },
                    "source-uri": {
                        "blurb": "URI to decode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "video-filter": {
                        "blurb": "the video filter(s) to apply, if possible",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstElement",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gsttranscode",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "ttmlsubs": {
        "description": "TTML subtitle handling",
        "elements": {
            "ttmlparse": {
                "author": "GStreamer maintainers <gstreamer-devel@lists.sourceforge.net>, Chris Bass <dash@rd.bbc.co.uk>",
                "description": "Parses TTML subtitle files",
                "hierarchy": [
                    "GstTtmlParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Subtitle",
                "long-name": "TTML subtitle parser",
                "pad-templates": {
                    "sink": {
                        "caps": "application/ttml+xml:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "text/x-raw(meta:GstSubtitleMeta):\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            },
            "ttmlrender": {
                "author": "David Schleef <ds@schleef.org>, Zeeshan Ali <zeeshan.ali@nokia.com>, Chris Bass <dash@rd.bbc.co.uk>",
                "description": "Renders timed-text subtitles on top of video buffers",
                "hierarchy": [
                    "GstTtmlRender",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Overlay/Subtitle",
                "long-name": "TTML subtitle renderer",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "text_sink": {
                        "caps": "text/x-raw(meta:GstSubtitleMeta):\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "video_sink": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(ANY):\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstttmlsubs",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "uvch264": {
        "description": "UVC compliant H264 encoding cameras plugin",
        "elements": {
            "uvch264mjpgdemux": {
                "author": "Youness Alaoui <youness.alaoui@collabora.co.uk>",
                "description": "Demux UVC H264 auxiliary streams from MJPG images",
                "hierarchy": [
                    "GstUvcH264MjpgDemux",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Demuxer",
                "long-name": "UVC H264 MJPG Demuxer",
                "pad-templates": {
                    "h264": {
                        "caps": "video/x-h264:\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "jpeg": {
                        "caps": "image/jpeg:\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "nv12": {
                        "caps": "video/x-raw:\n         format: NV12\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "sink": {
                        "caps": "image/jpeg:\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "yuy2": {
                        "caps": "video/x-raw:\n         format: YUY2\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device-fd": {
                        "blurb": "File descriptor of the v4l2 device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-clock-samples": {
                        "blurb": "Number of clock samples to gather for the PTS synchronization (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "32",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "uvch264src": {
                "author": "Youness Alaoui <youness.alaoui@collabora.co.uk>",
                "description": "UVC H264 Encoding camera source",
                "hierarchy": [
                    "GstUvcH264Src",
                    "GstBaseCameraSrc",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Source/Video",
                "long-name": "UVC H264 Source",
                "pad-templates": {
                    "imgsrc": {
                        "caps": "EMPTY",
                        "direction": "src",
                        "presence": "always"
                    },
                    "vfsrc": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nimage/jpeg:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "vidsrc": {
                        "caps": "video/x-raw:\n         format: { AYUV64, ARGB64, GBRA_12LE, GBRA_12BE, Y412_LE, Y412_BE, A444_10LE, GBRA_10LE, A444_10BE, GBRA_10BE, A422_10LE, A422_10BE, A420_10LE, A420_10BE, RGB10A2_LE, BGR10A2_LE, Y410, GBRA, ABGR, VUYA, BGRA, AYUV, ARGB, RGBA, A420, Y444_16LE, Y444_16BE, v216, P016_LE, P016_BE, Y444_12LE, GBR_12LE, Y444_12BE, GBR_12BE, I422_12LE, I422_12BE, Y212_LE, Y212_BE, I420_12LE, I420_12BE, P012_LE, P012_BE, Y444_10LE, GBR_10LE, Y444_10BE, GBR_10BE, r210, I422_10LE, I422_10BE, NV16_10LE32, Y210, v210, UYVP, I420_10LE, I420_10BE, P010_10LE, NV12_10LE32, NV12_10LE40, P010_10BE, Y444, GBR, NV24, xBGR, BGRx, xRGB, RGBx, BGR, IYU2, v308, RGB, Y42B, NV61, NV16, VYUY, UYVY, YVYU, YUY2, I420, YV12, NV21, NV12, NV12_64Z32, NV12_4L4, NV12_32L32, Y41B, IYU1, YVU9, YUV9, RGB16, BGR16, RGB15, BGR15, RGB8P, GRAY16_LE, GRAY16_BE, GRAY10_LE32, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nimage/jpeg:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-h264:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n  stream-format: { (string)byte-stream, (string)avc }\n      alignment: au\n        profile: { (string)high, (string)main, (string)baseline, (string)constrained-baseline }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "average-bitrate": {
                        "blurb": "The average bitrate in bits/second (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3000000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "colorspace-name": {
                        "blurb": "The name of the colorspace element",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "videoconvert",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device": {
                        "blurb": "Device location",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "/dev/video0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "Name of the device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    },
                    "enable-sei": {
                        "blurb": "Enable SEI picture timing (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "entropy": {
                        "blurb": "Entropy (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "cavlc (0)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "UvcH264Entropy",
                        "writable": true
                    },
                    "fixed-framerate": {
                        "blurb": "Fixed framerate (static & dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "iframe-period": {
                        "blurb": "Time between IDR frames in milliseconds (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10000",
                        "max": "65535",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "initial-bitrate": {
                        "blurb": "Initial bitrate in bits/second (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3000000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "jpeg-decoder-name": {
                        "blurb": "The name of the jpeg decoder element",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "jpegdec",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "leaky-bucket-size": {
                        "blurb": "Size of the leaky bucket size in milliseconds (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1000",
                        "max": "65535",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "level-idc": {
                        "blurb": "Level IDC (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40",
                        "max": "255",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "ltr-buffer-size": {
                        "blurb": "Total number of Long-Term Reference frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "ltr-encoder-control": {
                        "blurb": "Number of LTR frames the device can control (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "max-bframe-qp": {
                        "blurb": "The minimum Quantization step size for B frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "46",
                        "max": "127",
                        "min": "-127",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "max-iframe-qp": {
                        "blurb": "The minimum Quantization step size for I frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "46",
                        "max": "127",
                        "min": "-127",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "max-mbps": {
                        "blurb": "The number of macroblocks per second for the maximum processing rate",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": false
                    },
                    "max-pframe-qp": {
                        "blurb": "The minimum Quantization step size for P frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "46",
                        "max": "127",
                        "min": "-127",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-bframe-qp": {
                        "blurb": "The minimum Quantization step size for B frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "127",
                        "min": "-127",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-iframe-qp": {
                        "blurb": "The minimum Quantization step size for I frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "127",
                        "min": "-127",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "min-pframe-qp": {
                        "blurb": "The minimum Quantization step size for P frames (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "127",
                        "min": "-127",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-buffers": {
                        "blurb": "Number of buffers to output before sending EOS (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-clock-samples": {
                        "blurb": "Number of clock samples to gather for the PTS synchronization (-1 = unlimited)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "num-reorder-frames": {
                        "blurb": "Number of B frames between the references frames (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "255",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "peak-bitrate": {
                        "blurb": "The peak bitrate in bits/second (dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3000000",
                        "max": "-1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "preview-flipped": {
                        "blurb": "Horizontal flipped image for non H.264 streams (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "rate-control": {
                        "blurb": "Rate control mode (static & dynamic control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "cbr (1)",
                        "mutable": "playing",
                        "readable": true,
                        "type": "UvcH264RateControl",
                        "writable": true
                    },
                    "slice-mode": {
                        "blurb": "Defines the unit of the slice-units property (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "slice/frame (3)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "UvcH264SliceMode",
                        "writable": true
                    },
                    "slice-units": {
                        "blurb": "Slice units (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4",
                        "max": "65535",
                        "min": "0",
                        "mutable": "ready",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "usage-type": {
                        "blurb": "The usage type (static control)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "realtime (1)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "UvcH264UsageType",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "get-boolean-setting": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            },
                            {
                                "name": "arg1",
                                "type": "gpointer"
                            },
                            {
                                "name": "arg2",
                                "type": "gpointer"
                            }
                        ],
                        "return-type": "gboolean",
                        "when": "last"
                    },
                    "get-enum-setting": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            },
                            {
                                "name": "arg1",
                                "type": "gpointer"
                            },
                            {
                                "name": "arg2",
                                "type": "gpointer"
                            }
                        ],
                        "return-type": "gboolean",
                        "when": "last"
                    },
                    "get-int-setting": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            },
                            {
                                "name": "arg1",
                                "type": "gpointer"
                            },
                            {
                                "name": "arg2",
                                "type": "gpointer"
                            },
                            {
                                "name": "arg3",
                                "type": "gpointer"
                            }
                        ],
                        "return-type": "gboolean",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstuvch264",
        "license": "LGPL",
        "other-types": {
            "UvcH264Entropy": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "CAVLC",
                        "name": "cavlc",
                        "value": "0"
                    },
                    {
                        "desc": "CABAC",
                        "name": "cabac",
                        "value": "1"
                    }
                ]
            },
            "UvcH264RateControl": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Constant bit rate",
                        "name": "cbr",
                        "value": "1"
                    },
                    {
                        "desc": "Variable bit rate",
                        "name": "vbr",
                        "value": "2"
                    },
                    {
                        "desc": "Constant QP",
                        "name": "qp",
                        "value": "3"
                    }
                ]
            },
            "UvcH264SliceMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Ignored",
                        "name": "ignored",
                        "value": "0"
                    },
                    {
                        "desc": "Bits per slice",
                        "name": "bits/slice",
                        "value": "1"
                    },
                    {
                        "desc": "MBs per Slice",
                        "name": "MBs/slice",
                        "value": "2"
                    },
                    {
                        "desc": "Slice Per Frame",
                        "name": "slice/frame",
                        "value": "3"
                    }
                ]
            },
            "UvcH264UsageType": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Realtime (video conferencing)",
                        "name": "realtime",
                        "value": "1"
                    },
                    {
                        "desc": "Broadcast",
                        "name": "broadcast",
                        "value": "2"
                    },
                    {
                        "desc": "Storage",
                        "name": "storage",
                        "value": "3"
                    },
                    {
                        "desc": "UCConfig 0",
                        "name": "ucconfig0",
                        "value": "4"
                    },
                    {
                        "desc": "UCConfig 1",
                        "name": "ucconfig1",
                        "value": "5"
                    },
                    {
                        "desc": "UCConfig 2Q",
                        "name": "ucconfig2q",
                        "value": "6"
                    },
                    {
                        "desc": "UCConfig 2S",
                        "name": "ucconfig2s",
                        "value": "7"
                    },
                    {
                        "desc": "UCConfig 3",
                        "name": "ucconfig3",
                        "value": "8"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "v4l2codecs": {
        "description": "V4L2 CODEC Accelerators plugin",
        "elements": {},
        "filename": "gstv4l2codecs",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "va": {
        "description": "VA-API codecs plugin",
        "elements": {
            "vah264dec": {
                "author": "Víctor Jáquez <vjaquez@igalia.com>",
                "description": "VA-API based H.264 video decoder",
                "hierarchy": [
                    "GstVaH264Dec",
                    "GstH264Decoder",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video/Hardware",
                "long-name": "VA-API H.264 Decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:VAMemory):\n         format: { NV12, P010_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: { NV12, P010_10LE }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstva",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "videofiltersbad": {
        "description": "Video filters in gst-plugins-bad",
        "elements": {
            "scenechange": {
                "author": "David Schleef <ds@entropywave.com>",
                "description": "Detects scene changes in video",
                "hierarchy": [
                    "GstSceneChange",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Filter",
                "long-name": "Scene change detector",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, Y42B, Y41B, Y444 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, Y42B, Y41B, Y444 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "videodiff": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Visualize differences between adjacent video frames",
                "hierarchy": [
                    "GstVideoDiff",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Video/Filter",
                "long-name": "Video Diff",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B, Y41B }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B, Y41B }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "zebrastripe": {
                "author": "David Schleef <ds@entropywave.com>",
                "description": "Overlays zebra striping on overexposed areas of video",
                "hierarchy": [
                    "GstZebraStripe",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analysis",
                "long-name": "Zebra stripe overlay",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B, Y41B, YUY2, UYVY, AYUV, NV12, NV21, YV12 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, Y444, Y42B, Y41B, YUY2, UYVY, AYUV, NV12, NV21, YV12 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "threshold": {
                        "blurb": "Threshold above which the video is striped",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "90",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstvideofiltersbad",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "videoframe_audiolevel": {
        "description": "Video frame-synchronized audio level",
        "elements": {
            "videoframe-audiolevel": {
                "author": "Vivia Nikolaidou <vivia@toolsonair.com>",
                "description": "Synchronized audio/video RMS Level messenger for audio/raw",
                "hierarchy": [
                    "GstVideoFrameAudioLevel",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Audio",
                "long-name": "Video-frame audio level",
                "pad-templates": {
                    "asink": {
                        "caps": "audio/x-raw:\n         format: { S8, S16LE, S32LE, F32LE, F64LE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "asrc": {
                        "caps": "audio/x-raw:\n         format: { S8, S16LE, S32LE, F32LE, F64LE }\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    },
                    "vsink": {
                        "caps": "video/x-raw:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "vsrc": {
                        "caps": "video/x-raw:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstvideoframe_audiolevel",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "videoparsersbad": {
        "description": "videoparsers",
        "elements": {
            "diracparse": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Parses Dirac streams",
                "hierarchy": [
                    "GstDiracParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Video",
                "long-name": "Dirac parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-dirac:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-dirac:\n         parsed: true\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\npixel-aspect-ratio: [ 0/1, 2147483647/1 ]\n interlace-mode: { (string)progressive, (string)interleaved }\n        profile: { (string)vc2-low-delay, (string)vc2-simple, (string)vc2-main, (string)main }\n          level: { (string)0, (string)1, (string)128 }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "h263parse": {
                "author": "Arun Raghavan <arun.raghavan@collabora.co.uk>,Edward Hervey <edward.hervey@collabora.co.uk>",
                "description": "Parses H.263 streams",
                "hierarchy": [
                    "GstH263Parse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Video",
                "long-name": "H.263 parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h263:\n        variant: itu\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h263:\n        variant: itu\n         parsed: true\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary + 1"
            },
            "h264parse": {
                "author": "Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>",
                "description": "Parses H.264 streams",
                "hierarchy": [
                    "GstH264Parse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Converter/Video",
                "long-name": "H.264 parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h264:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h264:\n         parsed: true\n  stream-format: { (string)avc, (string)avc3, (string)byte-stream }\n      alignment: { (string)au, (string)nal }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "config-interval": {
                        "blurb": "Send SPS and PPS Insertion Interval in seconds (sprop parameter sets will be multiplexed in the data stream when detected.) (0 = disabled, -1 = send with every IDR frame)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3600",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "update-timecode": {
                        "blurb": "Update time code values in Picture Timing SEI if GstVideoTimeCodeMeta is attached to incoming buffer and also Picture Timing SEI exists in the bitstream. To make this property work, SPS must contain VUI and pic_struct_present_flag of VUI must be non-zero",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary + 1"
            },
            "h265parse": {
                "author": "Sreerenj Balachandran <sreerenj.balachandran@intel.com>",
                "description": "Parses H.265 streams",
                "hierarchy": [
                    "GstH265Parse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Converter/Video",
                "long-name": "H.265 parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-h265:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h265:\n         parsed: true\n  stream-format: { (string)hvc1, (string)hev1, (string)byte-stream }\n      alignment: { (string)au, (string)nal }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "config-interval": {
                        "blurb": "Send VPS, SPS and PPS Insertion Interval in seconds (sprop parameter sets will be multiplexed in the data stream when detected.) (0 = disabled, -1 = send with every IDR frame)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3600",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "jpeg2000parse": {
                "author": "Aaron Boxer <boxerab@gmail.com>",
                "description": "Parses JPEG 2000 files",
                "hierarchy": [
                    "GstJPEG2000Parse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Video/Image",
                "long-name": "JPEG 2000 parser",
                "pad-templates": {
                    "sink": {
                        "caps": "image/jp2:\nimage/x-jpc:\nimage/x-j2c:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/x-jpc:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n       sampling: { (string)RGB, (string)BGR, (string)RGBA, (string)BGRA, (string)YCbCr-4:4:4, (string)YCbCr-4:2:2, (string)YCbCr-4:2:0, (string)YCbCr-4:1:1, (string)GRAYSCALE, (string)YCbCrA-4:4:4:4 }\n     colorspace: { (string)sRGB, (string)sYUV, (string)GRAY }\n        profile: [ 0, 49151 ]\n         parsed: true\nimage/x-j2c:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n       sampling: { (string)RGB, (string)BGR, (string)RGBA, (string)BGRA, (string)YCbCr-4:4:4, (string)YCbCr-4:2:2, (string)YCbCr-4:2:0, (string)YCbCr-4:1:1, (string)GRAYSCALE, (string)YCbCrA-4:4:4:4 }\n     colorspace: { (string)sRGB, (string)sYUV, (string)GRAY }\n        profile: [ 0, 49151 ]\n         parsed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "mpeg4videoparse": {
                "author": "Julien Moutte <julien@fluendo.com>",
                "description": "Parses MPEG-4 Part 2 elementary video streams",
                "hierarchy": [
                    "GstMpeg4VParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Video",
                "long-name": "MPEG 4 video elementary stream parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/mpeg:\n    mpegversion: 4\n   systemstream: false\nvideo/x-divx:\n    divxversion: [ 4, 5 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/mpeg:\n    mpegversion: 4\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n         parsed: true\n   systemstream: false\nvideo/x-divx:\n    divxversion: [ 4, 5 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "config-interval": {
                        "blurb": "Send Configuration Insertion Interval in seconds (configuration headers will be multiplexed in the data stream when detected.) (0 = disabled, -1 = send with every IDR frame)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "3600",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "drop": {
                        "blurb": "Drop data until valid configuration data is received either in the stream or through caps",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary + 1"
            },
            "mpegvideoparse": {
                "author": "Wim Taymans <wim.taymans@ccollabora.co.uk>, Jan Schmidt <thaytan@mad.scientist.com>, Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>",
                "description": "Parses and frames MPEG-1 and MPEG-2 elementary video streams",
                "hierarchy": [
                    "GstMpegvParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Video",
                "long-name": "MPEG video elementary stream parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/mpeg:\n    mpegversion: [ 1, 2 ]\n   systemstream: false\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/mpeg:\n    mpegversion: [ 1, 2 ]\n         parsed: true\n   systemstream: false\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "drop": {
                        "blurb": "Drop data until valid configuration data is received either in the stream or through caps",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gop-split": {
                        "blurb": "Split frame when encountering GOP",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary + 1"
            },
            "pngparse": {
                "author": "Olivier Crete <olivier.crete@collabora.com>",
                "description": "Parses PNG files",
                "hierarchy": [
                    "GstPngParse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Video/Image",
                "long-name": "PNG parser",
                "pad-templates": {
                    "sink": {
                        "caps": "image/png:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/png:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n         parsed: true\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            },
            "vc1parse": {
                "author": "Sebastian Dröge <sebastian.droege@collabora.co.uk>",
                "description": "Parses VC1 streams",
                "hierarchy": [
                    "GstVC1Parse",
                    "GstBaseParse",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Parser/Converter/Video",
                "long-name": "VC1 parser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-wmv:\n     wmvversion: 3\n         format: { WVC1, WMV3 }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-wmv:\n     wmvversion: 3\n         format: { WVC1, WMV3 }\n  stream-format: { (string)bdu, (string)bdu-frame, (string)sequence-layer-bdu, (string)sequence-layer-bdu-frame, (string)sequence-layer-raw-frame, (string)sequence-layer-frame-layer, (string)asf, (string)frame-layer }\n  header-format: { (string)none, (string)asf, (string)sequence-layer }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstvideoparsersbad",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "videosignal": {
        "description": "Various video signal analysers",
        "elements": {
            "simplevideomark": {
                "author": "Wim Taymans <wim@fluendo.com>",
                "description": "Marks a video signal with a pattern",
                "hierarchy": [
                    "GstSimpleVideoMark",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Video marker",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y41B, Y42B, Y444, YUY2, UYVY, AYUV, YVYU }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y41B, Y42B, Y444, YUY2, UYVY, AYUV, YVYU }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bottom-offset": {
                        "blurb": "The offset from the bottom border where the pattern starts",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "enabled": {
                        "blurb": "Enable or disable the filter",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "left-offset": {
                        "blurb": "The offset from the left border where the pattern starts",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-count": {
                        "blurb": "The number of pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-data": {
                        "blurb": "The extra data pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "18446744073709551615",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint64",
                        "writable": true
                    },
                    "pattern-data-count": {
                        "blurb": "The number of extra data pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "64",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-height": {
                        "blurb": "The height of the pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-width": {
                        "blurb": "The width of the pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "simplevideomarkdetect": {
                "author": "Wim Taymans <wim@fluendo.com>",
                "description": "Detect patterns in a video signal",
                "hierarchy": [
                    "GstSimpleVideoMarkDetect",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Effect/Video",
                "long-name": "Video detecter",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y41B, Y42B, Y444, YUY2, UYVY, AYUV, YVYU }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y41B, Y42B, Y444, YUY2, UYVY, AYUV, YVYU }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bottom-offset": {
                        "blurb": "The offset from the bottom border where the pattern starts",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "left-offset": {
                        "blurb": "The offset from the left border where the pattern starts",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "message": {
                        "blurb": "Post detected data as bus messages",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pattern-center": {
                        "blurb": "The center of the black/white separation (0.0 = lowest, 1.0 highest)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.5",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "pattern-count": {
                        "blurb": "The number of pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-data-count": {
                        "blurb": "The number of extra data pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "5",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-height": {
                        "blurb": "The height of the pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "16",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "pattern-sensitivity": {
                        "blurb": "The sensitivity around the center for detecting the markers (0.0 = lowest, 1.0 highest)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0.3",
                        "max": "1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    },
                    "pattern-width": {
                        "blurb": "The width of the pattern markers",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4",
                        "max": "2147483647",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "videoanalyse": {
                "author": "Wim Taymans <wim@fluendo.com>",
                "description": "Analyse video signal",
                "hierarchy": [
                    "GstVideoAnalyse",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Video",
                "long-name": "Video analyser",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y444, Y42B, Y41B }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, Y444, Y42B, Y41B }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "message": {
                        "blurb": "Post statics messages",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstvideosignal",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "vmnc": {
        "description": "VmWare Video Codec plugins",
        "elements": {
            "vmncdec": {
                "author": "Michael Smith <msmith@xiph.org>",
                "description": "Decode VmWare video to raw (RGB) video",
                "hierarchy": [
                    "GstVMncDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Video",
                "long-name": "VMnc video decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-vmnc:\n        version: 1\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 0, 2147483647 ]\n         height: [ 0, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { RGBx, BGRx, xRGB, xBGR, RGB15, BGR15, RGB16, BGR16, GRAY8 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "primary"
            }
        },
        "filename": "gstvmnc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "voaacenc": {
        "description": "AAC audio encoder",
        "elements": {
            "voaacenc": {
                "author": "Kan Hu <kan.hu@linaro.org>",
                "description": "AAC audio encoder",
                "hierarchy": [
                    "GstVoAacEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "AAC audio encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 1\naudio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: 2\n   channel-mask: 0x0000000000000003\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/mpeg:\n    mpegversion: 4\n           rate: { (int)8000, (int)11025, (int)12000, (int)16000, (int)22050, (int)24000, (int)32000, (int)44100, (int)48000, (int)64000, (int)88200, (int)96000 }\n       channels: [ 1, 2 ]\n  stream-format: { (string)adts, (string)raw }\n   base-profile: lc\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Target Audio Bitrate (bits per second)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "128000",
                        "max": "320000",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "hard-resync": {
                        "blurb": "Perform clipping and sample flushing upon discontinuity",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mark-granule": {
                        "blurb": "Apply granule semantics to buffer metadata (implies perfect-timestamp)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": false
                    },
                    "perfect-timestamp": {
                        "blurb": "Favour perfect timestamps over tracking upstream timestamps",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "tolerance": {
                        "blurb": "Consider discontinuity if timestamp jitter/imperfection exceeds tolerance (ns)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "40000000",
                        "max": "9223372036854775807",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint64",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstvoaacenc",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "voamrwbenc": {
        "description": "Adaptive Multi-Rate Wide-Band Encoder",
        "elements": {
            "voamrwbenc": {
                "author": "Renato Araujo <renato.filho@indt.org.br>",
                "description": "Adaptive Multi-Rate Wideband audio encoder",
                "hierarchy": [
                    "GstVoAmrWbEnc",
                    "GstAudioEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Audio",
                "long-name": "AMR-WB audio encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: 16000\n       channels: 1\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/AMR-WB:\n           rate: 16000\n       channels: 1\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "band-mode": {
                        "blurb": "Encoding Band Mode (Kbps)",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "MR660 (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVoAmrWbEncBandMode",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstvoamrwbenc",
        "license": "unknown",
        "other-types": {
            "GstVoAmrWbEncBandMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "MR660",
                        "name": "MR660",
                        "value": "0"
                    },
                    {
                        "desc": "MR885",
                        "name": "MR885",
                        "value": "1"
                    },
                    {
                        "desc": "MR1265",
                        "name": "MR1265",
                        "value": "2"
                    },
                    {
                        "desc": "MR1425",
                        "name": "MR1425",
                        "value": "2"
                    },
                    {
                        "desc": "MR1585",
                        "name": "MR1585",
                        "value": "3"
                    },
                    {
                        "desc": "MR1825",
                        "name": "MR1825",
                        "value": "4"
                    },
                    {
                        "desc": "MR1985",
                        "name": "MR1985",
                        "value": "5"
                    },
                    {
                        "desc": "MR2305",
                        "name": "MR2305",
                        "value": "6"
                    },
                    {
                        "desc": "MR2385",
                        "name": "MR2385",
                        "value": "7"
                    },
                    {
                        "desc": "MRDTX",
                        "name": "MRDTX",
                        "value": "8"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "vulkan": {
        "description": "Vulkan plugin",
        "elements": {
            "vulkancolorconvert": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A Vulkan Color Convert",
                "hierarchy": [
                    "GstVulkanColorConvert",
                    "GstVulkanVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video/Convert",
                "long-name": "Vulkan Uploader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV, YUY2, NV12 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { BGRA, RGBA, ABGR, ARGB, BGRx, RGBx, xBGR, xRGB, AYUV, YUY2, NV12 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "vulkandownload": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A Vulkan data downloader",
                "hierarchy": [
                    "GstVulkanDownload",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Vulkan Downloader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:VulkanImage):\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "vulkanimageidentity": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A Vulkan image copier",
                "hierarchy": [
                    "GstVulkanImageIdentity",
                    "GstVulkanVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Vulkan Image Identity",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { BGRA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { BGRA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "vulkansink": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A videosink based on OpenGL",
                "hierarchy": [
                    "GstVulkanSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstVideoOverlay",
                    "GstNavigation"
                ],
                "klass": "Sink/Video",
                "long-name": "Vulkan video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { RGBA, BGRA, RGB, BGR }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "Vulkan device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVulkanDevice",
                        "writable": false
                    },
                    "force-aspect-ratio": {
                        "blurb": "When enabled, scaling will respect original aspect ratio",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "pixel-aspect-ratio": {
                        "blurb": "The pixel aspect ratio of the device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0/1",
                        "max": "2147483647/1",
                        "min": "0/1",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstFraction",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "vulkanupload": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A Vulkan data uploader",
                "hierarchy": [
                    "GstVulkanUpload",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video",
                "long-name": "Vulkan Uploader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:VulkanBuffer):\nvideo/x-raw:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:VulkanBuffer):\n\nvideo/x-raw(memory:VulkanImage):\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            },
            "vulkanviewconvert": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A Vulkan View Convert",
                "hierarchy": [
                    "GstVulkanViewConvert",
                    "GstVulkanVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Video/Convert",
                "long-name": "Vulkan Uploader",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { BGRA, RGBA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw(memory:VulkanImage):\n         format: { BGRA, RGBA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "downmix-mode": {
                        "blurb": "Output anaglyph type to generate when downmixing to mono",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "green-magenta-dubois (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVulkanStereoDownmix",
                        "writable": true
                    },
                    "input-flags-override": {
                        "blurb": "Override any input information about multiview layout flags",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoMultiviewFlags",
                        "writable": true
                    },
                    "input-mode-override": {
                        "blurb": "Override any input information about multiview layout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (-1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoMultiviewMode",
                        "writable": true
                    },
                    "output-flags-override": {
                        "blurb": "Override automatic negotiation for output multiview layout flags",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoMultiviewFlags",
                        "writable": true
                    },
                    "output-mode-override": {
                        "blurb": "Override automatic output mode selection for multiview layout",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (-1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVideoMultiviewMode",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstvulkan",
        "license": "LGPL",
        "other-types": {
            "GstVulkanDevice": {
                "hierarchy": [
                    "GstVulkanDevice",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "instance": {
                        "blurb": "Associated Vulkan Instance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVulkanInstance",
                        "writable": false
                    },
                    "physical-device": {
                        "blurb": "Associated Vulkan Physical Device",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": true,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVulkanPhysicalDevice",
                        "writable": true
                    }
                }
            },
            "GstVulkanInstance": {
                "hierarchy": [
                    "GstVulkanInstance",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "requested-api-major": {
                        "blurb": "Major version of the requested Vulkan API (0 = maximum supported)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "requested-api-minor": {
                        "blurb": "Minor version of the requested Vulkan API",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "signals": {
                    "create-device": {
                        "args": [],
                        "return-type": "GstVulkanDevice",
                        "when": "last"
                    }
                }
            },
            "GstVulkanPhysicalDevice": {
                "hierarchy": [
                    "GstVulkanPhysicalDevice",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "device-index": {
                        "blurb": "Device Index",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": true,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "instance": {
                        "blurb": "Associated Vulkan Instance",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": true,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstVulkanInstance",
                        "writable": true
                    },
                    "name": {
                        "blurb": "Device Name",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": false
                    }
                }
            },
            "GstVulkanStereoDownmix": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "GST_VULKAN_STEREO_DOWNMIX_ANAGLYPH_GREEN_MAGENTA_DUBOIS",
                        "name": "green-magenta-dubois",
                        "value": "0"
                    },
                    {
                        "desc": "GST_VULKAN_STEREO_DOWNMIX_ANAGLYPH_RED_CYAN_DUBOIS",
                        "name": "red-cyan-dubois",
                        "value": "1"
                    },
                    {
                        "desc": "GST_VULKAN_STEREO_DOWNMIX_ANAGLYPH_AMBER_BLUE_DUBOIS",
                        "name": "amber-blue-dubois",
                        "value": "2"
                    }
                ]
            },
            "GstVulkanVideoFilter": {
                "hierarchy": [
                    "GstVulkanVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object"
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "wasapi": {
        "description": "Windows audio session API plugin",
        "elements": {
            "wasapisink": {
                "author": "Nirbheek Chauhan <nirbheek@centricular.com>, Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>",
                "description": "Stream audio to an audio capture device through WASAPI",
                "hierarchy": [
                    "GstWasapiSink",
                    "GstAudioSink",
                    "GstAudioBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Sink/Audio/Hardware",
                "long-name": "WasapiSrc",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "WASAPI playback device as a GUID string",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "exclusive": {
                        "blurb": "Open the device in exclusive mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Optimize all settings for lowest latency. Always safe to enable.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Mute state of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "role": {
                        "blurb": "Role of the device: communications, multimedia, etc",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "console (0)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstWasapiDeviceRole",
                        "writable": true
                    },
                    "use-audioclient3": {
                        "blurb": "Use the Windows 10 AudioClient3 API when available and if the low-latency property is set to TRUE",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "wasapisrc": {
                "author": "Nirbheek Chauhan <nirbheek@centricular.com>, Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>",
                "description": "Stream audio from an audio capture device through WASAPI",
                "hierarchy": [
                    "GstWasapiSrc",
                    "GstAudioSrc",
                    "GstAudioBaseSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Audio/Hardware",
                "long-name": "WasapiSrc",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "WASAPI playback device as a GUID string",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "exclusive": {
                        "blurb": "Open the device in exclusive mode",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "loopback": {
                        "blurb": "Open the sink device for loopback recording",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Optimize all settings for lowest latency. Always safe to enable.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "role": {
                        "blurb": "Role of the device: communications, multimedia, etc",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "console (0)",
                        "mutable": "ready",
                        "readable": true,
                        "type": "GstWasapiDeviceRole",
                        "writable": true
                    },
                    "use-audioclient3": {
                        "blurb": "Whether to use the Windows 10 AudioClient3 API when available",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstwasapi",
        "license": "LGPL",
        "other-types": {
            "GstWasapiDeviceRole": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Games, system notifications, voice commands",
                        "name": "console",
                        "value": "0"
                    },
                    {
                        "desc": "Music, movies, recorded media",
                        "name": "multimedia",
                        "value": "1"
                    },
                    {
                        "desc": "Voice communications",
                        "name": "comms",
                        "value": "2"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "wasapi2": {
        "description": "Windows audio session API plugin",
        "elements": {
            "wasapi2sink": {
                "author": "Nirbheek Chauhan <nirbheek@centricular.com>, Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>, Seungha Yang <seungha@centricular.com>",
                "description": "Stream audio to an audio capture device through WASAPI",
                "hierarchy": [
                    "GstWasapi2Sink",
                    "GstAudioSink",
                    "GstAudioBaseSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstStreamVolume"
                ],
                "klass": "Sink/Audio/Hardware",
                "long-name": "Wasapi2Sink",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "WASAPI playback device as a GUID string",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Optimize all settings for lowest latency. Always safe to enable.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Mute state of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "volume": {
                        "blurb": "Volume of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "secondary"
            },
            "wasapi2src": {
                "author": "Nirbheek Chauhan <nirbheek@centricular.com>, Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>, Seungha Yang <seungha@centricular.com>",
                "description": "Stream audio from an audio capture device through WASAPI",
                "hierarchy": [
                    "GstWasapi2Src",
                    "GstAudioSrc",
                    "GstAudioBaseSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstStreamVolume"
                ],
                "klass": "Source/Audio/Hardware",
                "long-name": "Wasapi2Src",
                "pad-templates": {
                    "src": {
                        "caps": "audio/x-raw:\n         format: { F64LE, F64BE, F32LE, F32BE, S32LE, S32BE, U32LE, U32BE, S24_32LE, S24_32BE, U24_32LE, U24_32BE, S24LE, S24BE, U24LE, U24BE, S20LE, S20BE, U20LE, U20BE, S18LE, S18BE, U18LE, U18BE, S16LE, S16BE, U16LE, U16BE, S8, U8 }\n         layout: interleaved\n           rate: [ 1, 2147483647 ]\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device": {
                        "blurb": "WASAPI playback device as a GUID string",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "low-latency": {
                        "blurb": "Optimize all settings for lowest latency. Always safe to enable.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "mute": {
                        "blurb": "Mute state of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "volume": {
                        "blurb": "Volume of this stream",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1",
                        "max": "1",
                        "min": "0",
                        "mutable": "playing",
                        "readable": true,
                        "type": "gdouble",
                        "writable": true
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gstwasapi2",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "waylandsink": {
        "description": "Wayland Video Sink",
        "elements": {
            "waylandsink": {
                "author": "Sreerenj Balachandran <sreerenj.balachandran@intel.com>, George Kiagiadakis <george.kiagiadakis@collabora.com>",
                "description": "Output to wayland surface",
                "hierarchy": [
                    "GstWaylandSink",
                    "GstVideoSink",
                    "GstBaseSink",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstVideoOverlay",
                    "GstWaylandVideo"
                ],
                "klass": "Sink/Video",
                "long-name": "wayland video sink",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, NV61, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n\nvideo/x-raw(memory:DMABuf):\n         format: { BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, NV61, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    }
                },
                "properties": {
                    "display": {
                        "blurb": "Wayland display name to connect to, if not supplied via the GstContext",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "fullscreen": {
                        "blurb": "Whether the surface should be made fullscreen ",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstwaylandsink",
        "license": "LGPL",
        "other-types": {
            "GstWaylandVideo": {
                "hierarchy": [
                    "GstWaylandVideo",
                    "GInterface"
                ],
                "kind": "interface"
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "webp": {
        "description": "WebP plugin",
        "elements": {
            "webpdec": {
                "author": "Sreerenj Balachandran <sreerenj.balachandrn@intel.com>",
                "description": "Decode images from WebP format",
                "hierarchy": [
                    "GstWebPDec",
                    "GstVideoDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Image",
                "long-name": "WebP image decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "image/webp:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { RGB, RGBA, BGR, BGRA, ARGB, RGB16 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bypass-filtering": {
                        "blurb": "When enabled, skip the in-loop filtering",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "no-fancy-upsampling": {
                        "blurb": "When enabled, use faster pointwise upsampler",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "use-threads": {
                        "blurb": "When enabled, use multi-threaded decoding",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "primary"
            },
            "webpenc": {
                "author": "Sreerenj Balachandran <sreerenjb@gnome.org>",
                "description": "Encode images in WEBP format",
                "hierarchy": [
                    "GstWebpEnc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Image",
                "long-name": "WEBP image encoder",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { I420, YV12, RGB, RGBA }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "image/webp:\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 16, 16383 ]\n         height: [ 16, 16383 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "lossless": {
                        "blurb": "Enable lossless encoding",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "preset": {
                        "blurb": "Preset name for visual tuning",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "photo (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebpEncPreset",
                        "writable": true
                    },
                    "quality": {
                        "blurb": "quality level, between 0 (smallest file) and 100 (biggest)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "90",
                        "max": "100",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gfloat",
                        "writable": true
                    },
                    "speed": {
                        "blurb": "quality/speed trade-off (0=fast, 6=slower-better)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "4",
                        "max": "6",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstwebp",
        "license": "LGPL",
        "other-types": {
            "GstWebpEncPreset": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Default",
                        "name": "none",
                        "value": "0"
                    },
                    {
                        "desc": "Digital picture,inner shot",
                        "name": "picture",
                        "value": "1"
                    },
                    {
                        "desc": "Outdoor photo, natural lighting",
                        "name": "photo",
                        "value": "2"
                    },
                    {
                        "desc": "Hand or Line drawing",
                        "name": "drawing",
                        "value": "3"
                    },
                    {
                        "desc": "Small-sized colorful images",
                        "name": "icon",
                        "value": "4"
                    },
                    {
                        "desc": "text-like",
                        "name": "text",
                        "value": "5"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "webrtc": {
        "description": "WebRTC plugins",
        "elements": {
            "webrtcbin": {
                "author": "Matthew Waters <matthew@centricular.com>",
                "description": "A bin for webrtc connections",
                "hierarchy": [
                    "GstWebRTCBin",
                    "GstBin",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstChildProxy"
                ],
                "klass": "Filter/Network/WebRTC",
                "long-name": "WebRTC Bin",
                "pad-templates": {
                    "sink_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "sink",
                        "presence": "request",
                        "type": "GstWebRTCBinPad"
                    },
                    "src_%%u": {
                        "caps": "application/x-rtp:\n",
                        "direction": "src",
                        "presence": "sometimes"
                    }
                },
                "properties": {
                    "bundle-policy": {
                        "blurb": "The policy to apply for bundling",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCBundlePolicy",
                        "writable": true
                    },
                    "connection-state": {
                        "blurb": "The overall connection state of this element",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "new (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCPeerConnectionState",
                        "writable": false
                    },
                    "current-local-description": {
                        "blurb": "The local description that was successfully negotiated the last time the connection transitioned into the stable state",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSessionDescription",
                        "writable": false
                    },
                    "current-remote-description": {
                        "blurb": "The last remote description that was successfully negotiated the last time the connection transitioned into the stable state plus any remote candidates that have been supplied via addIceCandidate() since the offer or answer was created",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSessionDescription",
                        "writable": false
                    },
                    "ice-agent": {
                        "blurb": "The WebRTC ICE agent",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCICE",
                        "writable": false
                    },
                    "ice-connection-state": {
                        "blurb": "The collective connection state of all ICETransport's",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "new (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCICEConnectionState",
                        "writable": false
                    },
                    "ice-gathering-state": {
                        "blurb": "The collective gathering state of all ICETransport's",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "new (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCICEGatheringState",
                        "writable": false
                    },
                    "ice-transport-policy": {
                        "blurb": "The policy to apply for ICE transport",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "all (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCICETransportPolicy",
                        "writable": true
                    },
                    "latency": {
                        "blurb": "Default duration to buffer in the jitterbuffers (in ms)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "-1",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "local-description": {
                        "blurb": "The local SDP description in use for this connection. Favours a pending description over the current description",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSessionDescription",
                        "writable": false
                    },
                    "pending-local-description": {
                        "blurb": "The local description that is in the process of being negotiated plus any local candidates that have been generated by the ICE Agent since the offer or answer was created",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSessionDescription",
                        "writable": false
                    },
                    "pending-remote-description": {
                        "blurb": "The remote description that is in the process of being negotiated, complete with any remote candidates that have been supplied via addIceCandidate() since the offer or answer was created",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSessionDescription",
                        "writable": false
                    },
                    "remote-description": {
                        "blurb": "The remote SDP description to use for this connection. Favours a pending description over the current description",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSessionDescription",
                        "writable": false
                    },
                    "signaling-state": {
                        "blurb": "The signaling state of this element",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "stable (0)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCSignalingState",
                        "writable": false
                    },
                    "stun-server": {
                        "blurb": "The STUN server of the form stun://hostname:port",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "turn-server": {
                        "blurb": "The TURN server of the form turn(s)://username:password@host:port. This is a convenience property, use #GstWebRTCBin::add-turn-server if you wish to use multiple TURN servers",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "primary",
                "signals": {
                    "add-ice-candidate": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            },
                            {
                                "name": "arg1",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "add-transceiver": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstWebRTCRTPTransceiverDirection"
                            },
                            {
                                "name": "arg1",
                                "type": "GstCaps"
                            }
                        ],
                        "return-type": "GstWebRTCRTPTransceiver",
                        "when": "last"
                    },
                    "add-turn-server": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "gboolean",
                        "when": "last"
                    },
                    "create-answer": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstStructure"
                            },
                            {
                                "name": "arg1",
                                "type": "GstPromise"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "create-data-channel": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            },
                            {
                                "name": "arg1",
                                "type": "GstStructure"
                            }
                        ],
                        "return-type": "GstWebRTCDataChannel",
                        "when": "last"
                    },
                    "create-offer": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstStructure"
                            },
                            {
                                "name": "arg1",
                                "type": "GstPromise"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "get-stats": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstPad"
                            },
                            {
                                "name": "arg1",
                                "type": "GstPromise"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "get-transceiver": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gint"
                            }
                        ],
                        "return-type": "GstWebRTCRTPTransceiver",
                        "when": "last"
                    },
                    "get-transceivers": {
                        "action": true,
                        "args": [],
                        "return-type": "GArray",
                        "when": "last"
                    },
                    "on-data-channel": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstWebRTCDataChannel"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "on-ice-candidate": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "guint"
                            },
                            {
                                "name": "arg1",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "on-negotiation-needed": {
                        "args": [],
                        "return-type": "void",
                        "when": "last"
                    },
                    "on-new-transceiver": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstWebRTCRTPTransceiver"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "set-local-description": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstWebRTCSessionDescription"
                            },
                            {
                                "name": "arg1",
                                "type": "GstPromise"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "set-remote-description": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GstWebRTCSessionDescription"
                            },
                            {
                                "name": "arg1",
                                "type": "GstPromise"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstwebrtc",
        "license": "LGPL",
        "other-types": {
            "GstWebRTCBinPad": {
                "hierarchy": [
                    "GstWebRTCBinPad",
                    "GstGhostPad",
                    "GstProxyPad",
                    "GstPad",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "transceiver": {
                        "blurb": "Transceiver associated with this pad",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebRTCRTPTransceiver",
                        "writable": false
                    }
                }
            },
            "GstWebRTCICE": {
                "hierarchy": [
                    "GstWebRTCICE",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "kind": "object",
                "properties": {
                    "agent": {
                        "blurb": "ICE agent in use by this object. WARNING! Accessing this property may have disastrous consequences for the operation of webrtcbin. Other ICE implementations may not have the same interface.",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "mutable": "null",
                        "readable": true,
                        "type": "NiceAgent",
                        "writable": false
                    },
                    "ice-tcp": {
                        "blurb": "Whether the agent should use ICE-TCP when gathering candidates",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "ice-udp": {
                        "blurb": "Whether the agent should use ICE-UDP when gathering candidates",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "signals": {
                    "add-local-ip-address": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "gchararray"
                            }
                        ],
                        "return-type": "gboolean",
                        "when": "last"
                    }
                }
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "webrtcdsp": {
        "description": "Voice pre-processing using WebRTC Audio Processing Library",
        "elements": {
            "webrtcdsp": {
                "author": "Nicolas Dufresne <nicolas.dufresne@collabora.com>",
                "description": "Pre-processes voice with WebRTC Audio Processing Library",
                "hierarchy": [
                    "GstWebrtcDsp",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Generic/Audio",
                "long-name": "Voice Processor (AGC, AEC, filters, etc.)",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: F32LE\n         layout: non-interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: F32LE\n         layout: non-interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "compression-gain-db": {
                        "blurb": "Sets the maximum |gain| the digital compression stage may apply, in dB.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "9",
                        "max": "90",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "delay-agnostic": {
                        "blurb": "Enable or disable the delay agnostic mode.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "echo-cancel": {
                        "blurb": "Enable or disable echo canceller",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "echo-suppression-level": {
                        "blurb": "Controls the aggressiveness of the suppressor. A higher level trades off double-talk performance for increased echo suppression.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "moderate (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebrtcEchoSuppressionLevel",
                        "writable": true
                    },
                    "experimental-agc": {
                        "blurb": "Enable or disable experimental automatic gain control.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "extended-filter": {
                        "blurb": "Enable or disable the extended filter.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gain-control": {
                        "blurb": "Enable or disable automatic digital gain control",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "gain-control-mode": {
                        "blurb": "Controls the mode of the compression stage",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "adaptive-digital (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebrtcGainControlMode",
                        "writable": true
                    },
                    "high-pass-filter": {
                        "blurb": "Enable or disable high pass filtering",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "limiter": {
                        "blurb": "When enabled, the compression stage will hard limit the signal to the target level. Otherwise, the signal will be compressed but not limited above the target level.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noise-suppression": {
                        "blurb": "Enable or disable noise suppression",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "noise-suppression-level": {
                        "blurb": "Controls the aggressiveness of the suppression. Increasing the level will reduce the noise level at the expense of a higher speech distortion.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "moderate (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebrtcNoiseSuppressionLevel",
                        "writable": true
                    },
                    "probe": {
                        "blurb": "The name of the webrtcechoprobe element that record the audio being played through loud speakers. Must be set before PAUSED state.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "webrtcechoprobe0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "startup-min-volume": {
                        "blurb": "At startup the experimental AGC moves the microphone volume up to |startup_min_volume| if the current microphone volume is set too low. No effect if experimental-agc isn't enabled.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "12",
                        "max": "255",
                        "min": "12",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "target-level-dbfs": {
                        "blurb": "Sets the target peak |level| (or envelope) of the gain control in dBFS (decibels from digital full-scale).",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "3",
                        "max": "31",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "voice-detection": {
                        "blurb": "Enable or disable the voice activity detector",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "voice-detection-frame-size-ms": {
                        "blurb": "Sets the |size| of the frames in ms on which the VAD will operate. Larger frames will improve detection accuracy, but reduce the frequency of updates",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "10",
                        "max": "30",
                        "min": "10",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "voice-detection-likelihood": {
                        "blurb": "Specifies the likelihood that a frame will be declared to contain voice.",
                        "conditionally-available": false,
                        "construct": true,
                        "construct-only": false,
                        "controllable": false,
                        "default": "low (1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstWebrtcVoiceDetectionLikelihood",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "webrtcechoprobe": {
                "author": "Nicolas Dufresne <nicolas.dufrsesne@collabora.com>",
                "description": "Gathers playback buffers for webrtcdsp",
                "hierarchy": [
                    "GstWebrtcEchoProbe",
                    "GstAudioFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Generic/Audio",
                "long-name": "Acoustic Echo Canceller probe",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: F32LE\n         layout: non-interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\naudio/x-raw:\n         format: F32LE\n         layout: non-interleaved\n           rate: { (int)48000, (int)32000, (int)16000, (int)8000 }\n       channels: [ 1, 2147483647 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {},
                "rank": "none"
            }
        },
        "filename": "gstwebrtcdsp",
        "license": "LGPL",
        "other-types": {
            "GstWebrtcEchoSuppressionLevel": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Low Suppression",
                        "name": "low",
                        "value": "0"
                    },
                    {
                        "desc": "Moderate Suppression",
                        "name": "moderate",
                        "value": "1"
                    },
                    {
                        "desc": "high Suppression",
                        "name": "high",
                        "value": "2"
                    }
                ]
            },
            "GstWebrtcGainControlMode": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Adaptive Digital",
                        "name": "adaptive-digital",
                        "value": "1"
                    },
                    {
                        "desc": "Fixed Digital",
                        "name": "fixed-digital",
                        "value": "2"
                    }
                ]
            },
            "GstWebrtcNoiseSuppressionLevel": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Low Suppression",
                        "name": "low",
                        "value": "0"
                    },
                    {
                        "desc": "Moderate Suppression",
                        "name": "moderate",
                        "value": "1"
                    },
                    {
                        "desc": "High Suppression",
                        "name": "high",
                        "value": "2"
                    },
                    {
                        "desc": "Very High Suppression",
                        "name": "very-high",
                        "value": "3"
                    }
                ]
            },
            "GstWebrtcVoiceDetectionLikelihood": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "Very Low Likelihood",
                        "name": "very-low",
                        "value": "0"
                    },
                    {
                        "desc": "Low Likelihood",
                        "name": "low",
                        "value": "1"
                    },
                    {
                        "desc": "Moderate Likelihood",
                        "name": "moderate",
                        "value": "2"
                    },
                    {
                        "desc": "High Likelihood",
                        "name": "high",
                        "value": "3"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "wildmidi": {
        "description": "WildMidi-based MIDI playback plugin",
        "elements": {
            "wildmididec": {
                "author": "Carlos Rafael Giani <dv@pseudoterminal.org>",
                "description": "Decodes MIDI music using WildMidi",
                "hierarchy": [
                    "GstWildmidiDec",
                    "GstNonstreamAudioDecoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Decoder/Audio",
                "long-name": "WildMidi-based MIDI music decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "audio/midi:\naudio/riff-midi:\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "audio/x-raw:\n         format: S16LE\n         layout: interleaved\n           rate: 44100\n       channels: 2\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "enhanced-resampling": {
                        "blurb": "Use enhanced resampling if set to TRUE, or linear interpolation if set to FALSE",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "log-volume-scale": {
                        "blurb": "Use a logarithmic volume scale if set to TRUE, or a linear scale if set to FALSE",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "output-buffer-size": {
                        "blurb": "Size of each output buffer, in samples (actual size can be smaller than this during flush or EOS)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "1024",
                        "max": "1073741823",
                        "min": "1",
                        "mutable": "null",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "reverb": {
                        "blurb": "Whether or not to enable the WildMidi 8 reflection reverb engine to add more depth to the sound",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "marginal"
            }
        },
        "filename": "gstwildmidi",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "winks": {
        "description": "Windows kernel streaming plugin",
        "elements": {
            "ksvideosrc": {
                "author": "Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>\nHaakon Sporsheim <hakon.sporsheim@tandberg.com>\nAndres Colubri <andres.colubri@gmail.com>",
                "description": "Stream data from a video capture device through Windows kernel streaming",
                "hierarchy": [
                    "GstKsVideoSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video/Hardware",
                "long-name": "KsVideoSrc",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: RGB15\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: RGB16\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: BGRx\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nimage/jpeg:\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: dvsd\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\nvideo/x-raw:\n         format: dvsd\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "device-index": {
                        "blurb": "The zero-based device index",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "The human-readable device name",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "device-path": {
                        "blurb": "The device path",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "do-stats": {
                        "blurb": "Enable logging of statistics",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "enable-quirks": {
                        "blurb": "Enable driver-specific quirks",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "fps": {
                        "blurb": "Last measured framerate, if statistics are enabled",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": false
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstwinks",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "winscreencap": {
        "description": "Screen capture plugin for Windows",
        "elements": {
            "dx9screencapsrc": {
                "author": "Haakon Sporsheim <hakon.sporsheim@tandberg.com>",
                "description": "Captures screen",
                "hierarchy": [
                    "GstDX9ScreenCapSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "DirectX 9 screen capture source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cursor": {
                        "blurb": "Whether to show mouse cursor (default off)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Height of screen capture area (0 = maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "monitor": {
                        "blurb": "Which monitor to use (0 = 1st monitor and default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of screen capture area (0 = maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "x": {
                        "blurb": "Horizontal coordinate of top left corner for the screen capture area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Vertical coordinate of top left corner for the screen capture area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "dxgiscreencapsrc": {
                "author": "OKADA Jun-ichi <okada@abt.jp>",
                "description": "Captures screen",
                "hierarchy": [
                    "GstDXGIScreenCapSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "DirectX DXGI screen capture source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGRA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cursor": {
                        "blurb": "Whether to show mouse cursor (default off)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "device-name": {
                        "blurb": "Which monitor to use by device name (e.g. \"\\\\\\\\.\\\\DISPLAY1\")",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Height of screen capture area (0 = maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "monitor": {
                        "blurb": "Which monitor to use (-1 = primary monitor and default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "2147483647",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of screen capture area (0 = maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "x": {
                        "blurb": "Horizontal coordinate of top left corner for the screen capture area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Vertical coordinate of top left corner for the screen capture area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            },
            "gdiscreencapsrc": {
                "author": "Haakon Sporsheim <hakon.sporsheim@tandberg.com>",
                "description": "Captures screen",
                "hierarchy": [
                    "GstGDIScreenCapSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Source/Video",
                "long-name": "GDI screen capture source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw:\n         format: BGR\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "cursor": {
                        "blurb": "Whether to show mouse cursor (default off)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "height": {
                        "blurb": "Height of screen capture area (0 = maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "monitor": {
                        "blurb": "Which monitor to use (0 = 1st monitor and default)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "width": {
                        "blurb": "Width of screen capture area (0 = maximum)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "x": {
                        "blurb": "Horizontal coordinate of top left corner for the screen capture area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "y": {
                        "blurb": "Vertical coordinate of top left corner for the screen capture area",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstwinscreencap",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "wpe": {
        "description": "WPE src plugin",
        "elements": {
            "wpesrc": {
                "author": "Philippe Normand <philn@igalia.com>, Žan Doberšek <zdobersek@igalia.com>",
                "description": "Creates a video stream from a WPE browser",
                "hierarchy": [
                    "GstWpeSrc",
                    "GstGLBaseSrc",
                    "GstPushSrc",
                    "GstBaseSrc",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstURIHandler"
                ],
                "klass": "Source/Video",
                "long-name": "WPE source",
                "pad-templates": {
                    "src": {
                        "caps": "video/x-raw(memory:GLMemory):\n         format: RGBA\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\npixel-aspect-ratio: 1/1\n texture-target: 2D\nvideo/x-raw:\n         format: BGRA\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "draw-background": {
                        "blurb": "Whether to draw the WebView background",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "location": {
                        "blurb": "The URL to display",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "NULL",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    }
                },
                "rank": "none",
                "signals": {
                    "configure-web-view": {
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GObject"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    },
                    "load-bytes": {
                        "action": true,
                        "args": [
                            {
                                "name": "arg0",
                                "type": "GBytes"
                            }
                        ],
                        "return-type": "void",
                        "when": "last"
                    }
                }
            }
        },
        "filename": "gstwpe",
        "license": "LGPL",
        "other-types": {},
        "package": "gst-plugins-bad",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "x265": {
        "description": "x265-based H265 plugins",
        "elements": {
            "x265enc": {
                "author": "Thijs Vermeir <thijs.vermeir@barco.com>",
                "description": "H265 Encoder",
                "hierarchy": [
                    "GstX265Enc",
                    "GstVideoEncoder",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "interfaces": [
                    "GstPreset"
                ],
                "klass": "Codec/Encoder/Video",
                "long-name": "x265enc",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 16, 2147483647 ]\n         height: [ 16, 2147483647 ]\n         format: { Y444, Y42B, I420, Y444_10LE, I422_10LE, I420_10LE, Y444_12LE, I422_12LE, I420_12LE }\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-h265:\n      framerate: [ 0/1, 2147483647/1 ]\n          width: [ 16, 2147483647 ]\n         height: [ 16, 2147483647 ]\n  stream-format: byte-stream\n      alignment: au\n        profile: { (string)main, (string)main-still-picture, (string)main-intra, (string)main-444, (string)main-444-intra, (string)main-444-still-picture, (string)main-10, (string)main-10-intra, (string)main-422-10, (string)main-422-10-intra, (string)main-444-10, (string)main-444-10-intra, (string)main-12, (string)main-12-intra, (string)main-422-12, (string)main-422-12-intra, (string)main-444-12, (string)main-444-12-intra }\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "bitrate": {
                        "blurb": "Bitrate in kbit/sec",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "2048",
                        "max": "102400",
                        "min": "1",
                        "mutable": "playing",
                        "readable": true,
                        "type": "guint",
                        "writable": true
                    },
                    "key-int-max": {
                        "blurb": "Maximal distance between two key-frames (0 = x265 default / 250)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "0",
                        "max": "2147483647",
                        "min": "0",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "log-level": {
                        "blurb": "x265 log level",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "none (-1)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstX265LogLevel",
                        "writable": true
                    },
                    "option-string": {
                        "blurb": "String of x265 options (overridden by element properties) in the format \"key1=value1:key2=value2\".",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "",
                        "mutable": "null",
                        "readable": true,
                        "type": "gchararray",
                        "writable": true
                    },
                    "qp": {
                        "blurb": "QP for P slices in (implied) CQP mode (-1 = disabled)",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "-1",
                        "max": "51",
                        "min": "-1",
                        "mutable": "null",
                        "readable": true,
                        "type": "gint",
                        "writable": true
                    },
                    "speed-preset": {
                        "blurb": "Preset name for speed/quality tradeoff options",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "medium (6)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstX265SpeedPreset",
                        "writable": true
                    },
                    "tune": {
                        "blurb": "Preset name for tuning options",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "ssim (2)",
                        "mutable": "null",
                        "readable": true,
                        "type": "GstX265Tune",
                        "writable": true
                    }
                },
                "rank": "primary"
            }
        },
        "filename": "gstx265",
        "license": "GPL",
        "other-types": {
            "GstX265LogLevel": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "No logging",
                        "name": "none",
                        "value": "-1"
                    },
                    {
                        "desc": "Error",
                        "name": "error",
                        "value": "0"
                    },
                    {
                        "desc": "Warning",
                        "name": "warning",
                        "value": "1"
                    },
                    {
                        "desc": "Info",
                        "name": "info",
                        "value": "2"
                    },
                    {
                        "desc": "Debug",
                        "name": "debug",
                        "value": "3"
                    },
                    {
                        "desc": "Full",
                        "name": "full",
                        "value": "4"
                    }
                ]
            },
            "GstX265SpeedPreset": {
                "kind": "enum",
                "values": [
                    {
                        "desc": "No preset",
                        "name": "No preset",
                        "value": "0"
                    },
                    {
                        "desc": "ultrafast",
                        "name": "ultrafast",
                        "value": "1"
                    },
                    {
                        "desc": "superfast",
                        "name": "superfast",
                        "value": "2"
                    },
                    {
                        "desc": "veryfast",
                        "name": "veryfast",
                        "value": "3"
                    },
                    {
                        "desc": "faster",
                        "name": "faster",
                        "value": "4"
                    },
                    {
                        "desc": "fast",
                        "name": "fast",
                        "value": "5"
                    },
                    {
                        "desc": "medium",
                        "name": "medium",
                        "value": "6"
                    },
                    {
                        "desc": "slow",
                        "name": "slow",
                        "value": "7"
                    },
                    {
                        "desc": "slower",
                        "name": "slower",
                        "value": "8"
                    },
                    {
                        "desc": "veryslow",
                        "name": "veryslow",
                        "value": "9"
                    },
                    {
                        "desc": "placebo",
                        "name": "placebo",
                        "value": "10"
                    }
                ]
            },
            "GstX265Tune": {
                "ignore-enum-members": true,
                "kind": "enum",
                "values": [
                    {
                        "desc": "No tunning",
                        "name": "No tunning",
                        "value": "0"
                    },
                    {
                        "desc": "psnr",
                        "name": "psnr",
                        "value": "1"
                    },
                    {
                        "desc": "ssim",
                        "name": "ssim",
                        "value": "2"
                    },
                    {
                        "desc": "grain",
                        "name": "grain",
                        "value": "3"
                    },
                    {
                        "desc": "zerolatency",
                        "name": "zerolatency",
                        "value": "4"
                    },
                    {
                        "desc": "fastdecode",
                        "name": "fastdecode",
                        "value": "5"
                    },
                    {
                        "desc": "animation",
                        "name": "animation",
                        "value": "6"
                    }
                ]
            }
        },
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "y4mdec": {
        "description": "Demuxes/decodes YUV4MPEG streams",
        "elements": {
            "y4mdec": {
                "author": "David Schleef <ds@schleef.org>",
                "description": "Demuxes/decodes YUV4MPEG streams",
                "hierarchy": [
                    "GstY4mDec",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Codec/Demuxer",
                "long-name": "YUV4MPEG demuxer/decoder",
                "pad-templates": {
                    "sink": {
                        "caps": "application/x-yuv4mpeg:\n     y4mversion: 2\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { I420, Y42B, Y444 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "rank": "secondary"
            }
        },
        "filename": "gsty4mdec",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    },
    "zbar": {
        "description": "zbar barcode scanner",
        "elements": {
            "zbar": {
                "author": "Stefan Kost <ensonic@users.sf.net>",
                "description": "Detect bar codes in the video streams",
                "hierarchy": [
                    "GstZBar",
                    "GstVideoFilter",
                    "GstBaseTransform",
                    "GstElement",
                    "GstObject",
                    "GInitiallyUnowned",
                    "GObject"
                ],
                "klass": "Filter/Analyzer/Video",
                "long-name": "Barcode detector",
                "pad-templates": {
                    "sink": {
                        "caps": "video/x-raw:\n         format: { Y800, I420, YV12, NV12, NV21, Y41B, Y42B, YUV9, YVU9 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "sink",
                        "presence": "always"
                    },
                    "src": {
                        "caps": "video/x-raw:\n         format: { Y800, I420, YV12, NV12, NV21, Y41B, Y42B, YUV9, YVU9 }\n          width: [ 1, 2147483647 ]\n         height: [ 1, 2147483647 ]\n      framerate: [ 0/1, 2147483647/1 ]\n",
                        "direction": "src",
                        "presence": "always"
                    }
                },
                "properties": {
                    "attach-frame": {
                        "blurb": "Attach a frame dump to each barcode message",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "cache": {
                        "blurb": "Enable or disable the inter-image result cache",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "false",
                        "mutable": "ready",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    },
                    "message": {
                        "blurb": "Post a barcode message for each detected code",
                        "conditionally-available": false,
                        "construct": false,
                        "construct-only": false,
                        "controllable": false,
                        "default": "true",
                        "mutable": "null",
                        "readable": true,
                        "type": "gboolean",
                        "writable": true
                    }
                },
                "rank": "none"
            }
        },
        "filename": "gstzbar",
        "license": "LGPL",
        "other-types": {},
        "package": "GStreamer Bad Plug-ins",
        "source": "gst-plugins-bad",
        "tracers": {},
        "url": "Unknown package origin"
    }
}